5,840,503 results for 'ERROR repo:killerpenguinassassins/open_distrib_devel' (54 ms)
nfs3xdr.c https://bitbucket.org/digetx/picasso-kernel.git | C | 2,546 lines
26 27/* Mapping from NFS error code to "errno" error code. */ 28#define errno_NFSERR_IO EIO 777 goto out; 778 error = decode_post_op_attr(xdr, fattr); 779out: 1341 BUG_ON(error < 0); 1342 error = nfsacl_encode(xdr->buf, base + error, args->inode, 1343 (args->mask & NFS_DFACL) ? 1454 enum nfs_stat status; 1455 int error; 1456 2362 aclcnt = &result->acl_default_count; 2363 error = nfsacl_decode(xdr->buf, hdrlen + error, aclcnt, acl); 2364 if (unlikely(error <= 0))xattr.c https://bitbucket.org/digetx/picasso-kernel.git | C | 1,505 lines
81 struct gfs2_ea_header *ea, *prev = NULL; 82 int error = 0; 83 96 error = ea_call(ip, bh, ea, prev, data); 97 if (error) 98 return error; 107 108 return error; 109 118 __be64 *eablk, *end; 119 int error; 120 337 338 error = ea_dealloc_unstuffed(ip, bh, ea, prev, (leave) ? &error : NULL); 339quota.c https://bitbucket.org/digetx/picasso-kernel.git | C | 1,643 lines
1347 1348static void quotad_error(struct gfs2_sbd *sdp, const char *msg, int error) 1349{ 1349{ 1350 if (error == 0 || error == -EROFS) 1351 return; 1352 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) 1353 fs_err(sdp, "gfs2_quotad: %s error %d\n", msg, error); 1354} 1362 int error = fxn(sdp->sd_vfs, 0); 1363 quotad_error(sdp, msg, error); 1364 *timeo = gfs2_tune_get_i(&sdp->sd_tune, new_timeo) * HZ; 1417 int error = gfs2_statfs_sync(sdp->sd_vfs, 0); 1418 quotad_error(sdp, "statfs", error); 1419 statfs_timeo = gfs2_tune_get(sdp, gt_statfs_quantum) * HZ;ops_fstype.c https://bitbucket.org/digetx/picasso-kernel.git | C | 1,435 lines
156 157static void end_bio_io_page(struct bio *bio, int error) 158{ 163 else 164 printk(KERN_WARNING "gfs2: error %d reading superblock\n", error); 165 unlock_page(page); 194 * @sector: The location of the super block 195 * @error: The error code to return 196 * 746 if (error) { 747 fs_err(sdp, "error recovering my journal: %d\n", error); 748 goto fail_jinode_gh; 1327 args.ar_quota_quantum = 60; 1328 args.ar_errors = GFS2_ERRORS_DEFAULT; 1329inode.c https://bitbucket.org/digetx/picasso-kernel.git | C | 1,861 lines
136 * 137 * Returns: A VFS inode, or an error 138 */ 157 158 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl); 159 if (unlikely(error)) 162 163 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl); 164 if (unlikely(error)) 167 set_bit(GIF_INVALID, &ip->i_flags); 168 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh); 169 if (unlikely(error)) 241 gfs2_glock_dq_uninit(&i_gh); 242 return error ? ERR_PTR(error) : inode; 243fail_iput:xattr.c https://bitbucket.org/digetx/picasso-kernel.git | C | 1,715 lines
571out: 572 ext4_std_error(inode->i_sb, error); 573 return; 1206 if (error == 0) 1207 error = error2; 1208 } 1481 if (!bh) { 1482 EXT4_ERROR_INODE(inode, "block %llu read error", 1483 EXT4_I(inode)->i_file_acl); 1548 * Returns 0 if the blocks are equal, 1 if they differ, and 1549 * a negative error number on errors. 1550 */ 1613 if (!bh) { 1614 EXT4_ERROR_INODE(inode, "block %lu read error", 1615 (unsigned long) ce->e_block);i915_irq.c https://bitbucket.org/digetx/picasso-kernel.git | C | 2,775 lines
978{ 979 struct drm_i915_error_state *error = container_of(error_ref, 980 typeof(*error), ref); 1267 if (INTEL_INFO(dev)->gen >= 6) { 1268 error->error = I915_READ(ERROR_GEN6); 1269 error->done_reg = I915_READ(DONE_REG); 2268 2269 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH)); 2270 2505 /* 2506 * Enable some error detection, note the instruction error mask 2507 * bit is reserved, so we leave it masked. 2509 if (IS_G4X(dev)) { 2510 error_mask = ~(GM45_ERROR_PAGE_TABLE | 2511 GM45_ERROR_MEM_PRIV |failoverSCI.cpp https://bitbucket.org/Habibutsu/mysql.git | C++ | 862 lines
27 28sci_error_t error; 29sci_desc_t sdOne; 102 sci_query_adapter_t queryAdapter; 103 sci_error_t error; 104 unsigned int _localNodeId; 314 if (error != SCI_ERR_OK) { 315 fprintf(stderr,"SCICreateMapSequence failed - Error code 0x%x\n",error); 316 return error; 793 } 794 fprintf(stderr,"SCIOpen failed - Error code 0x%x\n",error); 795 exit(error); 803 } 804 fprintf(stderr,"SCIOpen failed - Error code 0x%x\n",error); 805 exit(error);mysqltest.test https://bitbucket.org/Habibutsu/mysql.git | Unknown | 2,940 lines
303# "Maskings" are 304# --error <error number> and --error <error number> 305# in the line before the failing statement. 344--error 1 345--exec echo "disable_abort_on_error; error 1000; select 3 from t1; error 1000; select 3 from t1;" | $MYSQL_TEST 2>&1 346 391--error 1 392--exec echo "disable_abort_on_error; enable_abort_on_error; error 1064; select 3 from t1; select 3 from t1;" | $MYSQL_TEST 2>&1 393 666#--error ER_PARSE_ERROR 667#--error 9,ER_PARSE_ERROR,9,ER_PARSE_ERROR 668#--error 9, ER_PARSE_ERROR, 9, ER_PARSE_ERROR 669#--error 9,S00000,9,ER_PARSE_ERROR 670#--error 9,S00000,9,ER_PARSE_ERROR,ER_PARSE_ERROR,ER_PARSE_ERROR,9,10,11,12 671--error 9,S00000,9ai_overflow_error.test https://bitbucket.org/Habibutsu/mysql.git | Unknown | 785 lines
8SHOW CREATE TABLE t1; 9--error 1264 10INSERT INTO t1 VALUES(111111111111111111111111111111111111); 10INSERT INTO t1 VALUES(111111111111111111111111111111111111); 11--error 1264 12INSERT INTO t1 VALUES(-1111111111111111111111111111111111111); 21SHOW CREATE TABLE t1; 22--error 1264 23INSERT INTO t1 VALUES(111111111111111111111111111111111111); 23INSERT INTO t1 VALUES(111111111111111111111111111111111111); 24--error 1264 25INSERT INTO t1 VALUES(-1111111111111111111111111111111111111); 34SHOW CREATE TABLE t1; 35--error 1264 36INSERT INTO t1 VALUES(111111111111111111111111111111111111);ai_overflow_error.result https://bitbucket.org/Habibutsu/mysql.git | Unknown | 1,082 lines
10INSERT INTO t1 VALUES(111111111111111111111111111111111111); 11ERROR 22003: Out of range value for column 'c1' at row 1 12INSERT INTO t1 VALUES(-1111111111111111111111111111111111111); 12INSERT INTO t1 VALUES(-1111111111111111111111111111111111111); 13ERROR 22003: Out of range value for column 'c1' at row 1 14SELECT * FROM t1; 28INSERT INTO t1 VALUES(111111111111111111111111111111111111); 29ERROR 22003: Out of range value for column 'c1' at row 1 30INSERT INTO t1 VALUES(-1111111111111111111111111111111111111); 30INSERT INTO t1 VALUES(-1111111111111111111111111111111111111); 31ERROR 22003: Out of range value for column 'c1' at row 1 32SELECT * FROM t1; 46INSERT INTO t1 VALUES(111111111111111111111111111111111111); 47ERROR 22003: Out of range value for column 'c1' at row 1 48INSERT INTO t1 VALUES(-1111111111111111111111111111111111111);variables.result https://bitbucket.org/Habibutsu/mysql.git | Unknown | 1,779 lines
10set @my_max_binlog_size =@@global.max_binlog_size; 11set @my_max_connect_errors =@@global.max_connect_errors; 12set @my_max_connections =@@global.max_connections; 1051set global max_binlog_size =@my_max_binlog_size; 1052set global max_connect_errors =@my_max_connect_errors; 1053set global max_connections =@my_max_connections; 1252SELECT @@session.log_error; 1253ERROR HY000: Variable 'log_error' is a GLOBAL variable 1254SELECT @@global.log_error; 1257SET @@session.log_error= 'x'; 1258ERROR HY000: Variable 'log_error' is a read only variable 1259SET @@global.log_error= 'x'; 1259SET @@global.log_error= 'x'; 1260ERROR HY000: Variable 'log_error' is a read only variable 1261#signal.result https://bitbucket.org/Habibutsu/mysql.git | Unknown | 2,393 lines
70create table test_reserved (resignal int); 71ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'resignal int)' at line 1 72create table test_reserved (condition int); 72create table test_reserved (condition int); 73ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'condition int)' at line 1 74# 83end $$ 84ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '; 85end' at line 3 1504before RESIGNAL 1505ERROR 55555: Raising an error 1506drop procedure test_resignal $$ 2377end $$ 2378ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''cÊèçà ' CONDITION FOR SQLSTATE '12345'; 2379SIGNAL 'cÊèçà ' S' at line 3errors.html https://bitbucket.org/georgikirow/ksk.git | HTML | 3,834 lines
61 Reports <b class="caret"></b></a><ul class="dropdown-menu"> 62<li><a href="errors.html"><i class="icon-remove-sign"></i>�Errors� 63 <span class="label label-info">519</span></a></li> 89<li><div class="btn-group type-filter" data-toggle="buttons-checkbox"> 90<button class="btn critical">Critical</button><button class="btn error">Error</button><button class="btn notice">Notice</button> 91</div></li> 134<li><a href="#PHPExcel%5CShared%5CJAMA%5CSingularValueDecomposition.php"><i class="icon-file"></i>PHPExcel\Shared\JAMA\SingularValueDecomposition.php</a></li> 135<li><a href="#PHPExcel%5CShared%5CJAMA%5Cutils%5CError.php"><i class="icon-file"></i>PHPExcel\Shared\JAMA\utils\Error.php</a></li> 136<li><a href="#PHPExcel%5CShared%5CJAMA%5Cutils%5CMaths.php"><i class="icon-file"></i>PHPExcel\Shared\JAMA\utils\Maths.php</a></li> 2638<div class="package-contents"> 2639<a name="PHPExcel%5CShared%5CJAMA%5Cutils%5CError.php" id="PHPExcel\Shared\JAMA\utils\Error.php"></a><h3> 2640<i class="icon-file"></i>PHPExcel\Shared\JAMA\utils\Error.php<small style="float: right;padding-right: 10px;">3</small> 2656<td>66</td> 2657<td>Name of argument $errorNumber does not match with the DocBlock's name $num in \JAMAError()</td> 2658</tr>main.c https://bitbucket.org/mifl/android_kernel_qrd_msm.git | C | 1,203 lines
63 64static int async_error; 65 229{ 230 int error = 0; 231 ktime_t calltime; 245 if (ops->suspend) { 246 error = ops->suspend(dev); 247 suspend_report_result(ops->suspend, error); 999 pm_runtime_put_sync(dev); 1000 async_error = error; 1001 } else if (dev->power.is_suspended) { 1069 if (!error) 1070 error = async_error; 1071 if (!error)jsonrpc.py https://bitbucket.org/devonit/qjsonrpc.git | Python | 1,075 lines
209 def __init__(self, error_data=None): 210 RPCFault.__init__(self, PARSE_ERROR, ERROR_MESSAGE[PARSE_ERROR], error_data) 211 360 return '{"result": null, "error": {"code":%s, "message": %s}, "id": %s}' % \ 361 (self.dumps(error.error_code), self.dumps(error.error_message), self.dumps(id)) 362 else: 363 return '{"result": null, "error": {"code":%s, "message": %s, "data": %s}, "id": %s}' % \ 364 (self.dumps(error.error_code), self.dumps(error.error_message), self.dumps(error.error_data), self.dumps(id)) 365 545 return '{"jsonrpc": "2.0", "error": {"code":%s, "message": %s, "data": %s}, "id": %s}' % \ 546 (self.dumps(error.error_code), self.dumps(error.error_message), self.dumps(error.error_data), self.dumps(id)) 547 1056 self.log( "%d (%s): %s" % (INTERNAL_ERROR, ERROR_MESSAGE[INTERNAL_ERROR], str(err)) ) 1057 return self.__data_serializer.dumps_error( RPCFault(INTERNAL_ERROR, ERROR_MESSAGE[INTERNAL_ERROR]), id ) 1058xfs_vnodeops.c https://bitbucket.org/lgorence/linux.git | C | 1,875 lines
235 error = xfs_free_eofblocks(mp, ip, true); 236 if (error && error != EAGAIN) 237 return error; 928 if (ip->i_d.di_nlink != 2) { 929 error = XFS_ERROR(ENOTEMPTY); 930 goto out_trans_cancel; 932 if (!xfs_dir_isempty(ip)) { 933 error = XFS_ERROR(ENOTEMPTY); 934 goto out_trans_cancel; 1075 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) { 1076 error = XFS_ERROR(EXDEV); 1077 goto error_return; 1314 if (nimaps == 0) { 1315 error = XFS_ERROR(ENOSPC); 1316 break;wl_android.c https://bitbucket.org/arter97/arter97-cm-i9300.git | C | 2,561 lines
742 if (error) { 743 DHD_ERROR(("Failed to get Scan Home Time, error = %d\n", error)); 744 return -1; 817 if (error) { 818 DHD_ERROR(("%s: Failed to get Scan NProbes, error = %d\n", __FUNCTION__, error)); 819 return -1; 1031 if (error) { 1032 DHD_ERROR(("%s: Failed to get OKC Mode, error = %d\n", __FUNCTION__, error)); 1033 return -1; 1612 if (error) { 1613 DHD_ERROR(("Failed to set SRL, error = %d\n", error)); 1614 } 1616 if (error) { 1617 DHD_ERROR(("Failed to set LRL, error = %d\n", error)); 1618 }client_test.coffee https://bitbucket.org/coderaiser/cloudcmd.git | CoffeeScript | 1,493 lines
103 @__client.remove @testFolder, (error, stat) => 104 @test.error(new Error(error)) if error 105 done() 778 listenerError = null 779 @client.onError.addListener (error) -> listenerError = error 780 784 expect(error).to.be.instanceOf Dropbox.ApiError 785 expect(listenerError).to.equal error 786 unless Dropbox.Xhr.ieXdr # IE's XDR doesn't do status codes. 878 listenerError = null 879 @client.onError.addListener (error) -> listenerError = error 880 882 expect(error).to.be.instanceOf Dropbox.ApiError 883 expect(listenerError).to.equal error 884 unless Dropbox.Xhr.ieXdr # IE's XDR doesn't do status codes.ex4_4.out https://bitbucket.org/petsc/petsc.git | Unknown | 113 lines
1Solving a linear TS problem, number of processors = 3 2Timestep 0: time = 0. 2-norm error = 0. max norm error = 0. 3Timestep 1: time = 0.000143637 2-norm error = 0.000599907 max norm error = 0.000863771 3Timestep 1: time = 0.000143637 2-norm error = 0.000599907 max norm error = 0.000863771 4Timestep 2: time = 0.000287274 2-norm error = 0.00113969 max norm error = 0.00164231 5Timestep 3: time = 0.000430911 2-norm error = 0.00162387 max norm error = 0.00234201 5Timestep 3: time = 0.000430911 2-norm error = 0.00162387 max norm error = 0.00234201 6Timestep 4: time = 0.000574548 2-norm error = 0.00205669 max norm error = 0.00296886 7Timestep 5: time = 0.000718184 2-norm error = 0.00244208 max norm error = 0.00352842 7Timestep 5: time = 0.000718184 2-norm error = 0.00244208 max norm error = 0.00352842 8Timestep 6: time = 0.000861821 2-norm error = 0.00278372 max norm error = 0.00402589 9Timestep 7: time = 0.00100546 2-norm error = 0.00308505 max norm error = 0.00446612 9Timestep 7: time = 0.00100546 2-norm error = 0.00308505 max norm error = 0.00446612 10Timestep 8: time = 0.0011491 2-norm error = 0.00334925 max norm error = 0.00485363 11Timestep 9: time = 0.00129273 2-norm error = 0.0035793 max norm error = 0.00519261