14,543,270 results for 'ERROR repo:melior/octave' (636 ms)
xfs_alloc.c https://bitbucket.org/microcreat/cortexm_uclinux.git | C | 2,604 lines
322{ 323 int error; /* error code */ 324 int i; /* operation results */ 679 xfs_agblock_t gtnew; /* useful start bno of right side */ 680 int error; /* error code */ 681 int i; /* result code, temporary */ 1206 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */ 1207 int error; /* error result */ 1208 xfs_agblock_t fbno; /* start of found freespace */ 1448 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */ 1449 int error; /* error return value */ 1450 xfs_agblock_t gtbno; /* start of right neighbor block */ 1765 xfs_extlen_t delta; /* new blocks needed in freelist */ 1766 int error; /* error result code */ 1767 xfs_extlen_t longest;/* longest extent in allocation group */quota.c https://bitbucket.org/microcreat/cortexm_uclinux.git | C | 1,587 lines
1305 1306static void quotad_error(struct gfs2_sbd *sdp, const char *msg, int error) 1307{ 1307{ 1308 if (error == 0 || error == -EROFS) 1309 return; 1310 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) 1311 fs_err(sdp, "gfs2_quotad: %s error %d\n", msg, error); 1312} 1320 int error = fxn(sdp->sd_vfs, 0); 1321 quotad_error(sdp, msg, error); 1322 *timeo = gfs2_tune_get_i(&sdp->sd_tune, new_timeo) * HZ; 1375 int error = gfs2_statfs_sync(sdp->sd_vfs, 0); 1376 quotad_error(sdp, "statfs", error); 1377 statfs_timeo = gfs2_tune_get(sdp, gt_statfs_quantum) * HZ;ops_inode.c https://bitbucket.org/microcreat/cortexm_uclinux.git | C | 1,441 lines
115 struct gfs2_holder gh; 116 int error; 117 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh); 117 error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh); 118 if (error) { 119 iput(inode); 119 iput(inode); 120 return ERR_PTR(error); 121 } 150 int alloc_required; 151 int error; 152 158 159 error = gfs2_glock_nq(ghs); /* parent */ 160 if (error)open.c https://bitbucket.org/codefirex/kernel_lge_kamakogeebang.git | C | 1,144 lines
67 struct inode *inode; 68 int error; 69 69 70 error = -EINVAL; 71 if (length < 0) /* sorry, but loff_t says... */ 73 74 error = user_path(pathname, &path); 75 if (error) 79 /* For directories it's -EISDIR, for other non-regulars - -EINVAL */ 80 error = -EISDIR; 81 if (S_ISDIR(inode->i_mode)) 83 84 error = -EINVAL; 85 if (!S_ISREG(inode->i_mode))client.c https://bitbucket.org/codefirex/kernel_lge_kamakogeebang.git | C | 2,077 lines
598 * 599 * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate 600 * other versions of NFS can be tried. 1451error: 1452 dprintk("<-- nfs4_set_client() = xerror %d\n", error); 1453 return error; 1665 nfs_free_server(server); 1666 dprintk("<-- nfs4_create_server() = error %d\n", error); 1667 return ERR_PTR(error); 1719 nfs_free_server(server); 1720 dprintk("<-- nfs4_create_referral_server() = error %d\n", error); 1721 return ERR_PTR(error); 1792 nfs_free_server(server); 1793 dprintk("<-- nfs_clone_server() = error %d\n", error); 1794 return ERR_PTR(error);errors.html https://bitbucket.org/BeryJu/svmon-3.git | HTML | 823 lines
33 Reports <b class="caret"></b></a><ul class="dropdown-menu"> 34<li><a href="errors.html"><i class="icon-remove-sign"></i> Errors 35 <span class="label label-info">96</span></a></li> 54<li><div class="btn-group type-filter" data-toggle="buttons-checkbox"> 55<button class="btn critical">Critical</button><button class="btn error">Error</button><button class="btn notice">Notice</button> 56</div></li> 95</tr></thead> 96<tbody><tr class="error"> 97<td>error</td> 113<tbody> 114<tr class="error"> 115<td>error</td> 173<tr class="error"> 174<td>error</td> 175<td>13</td>vie_autotest_simulcast.cc https://bitbucket.org/bohlooli/webrtc.git | C++ | 656 lines
80 81 int error = 0; 82 int receive_channels[kNumStreams]; 87 if (video_engine == NULL) { 88 printf("ERROR in VideoEngine::Create\n"); 89 return -1; 91 92 error = video_engine->SetTraceFilter(webrtc::kTraceAll); 93 if (error == -1) { 93 if (error == -1) { 94 printf("ERROR in VideoEngine::SetTraceLevel\n"); 95 return -1; 99 ViETest::GetResultOutputPath() + "ViESimulcast_trace.txt"; 100 error = video_engine->SetTraceFile(trace_file.c_str()); 101 if (error == -1) {vie_autotest_loopback.cc https://bitbucket.org/bohlooli/webrtc.git | C++ | 692 lines
44 45 int error = 0; 46 53 { 54 printf("ERROR in VideoEngine::Create\n"); 55 return -1; 57 58 error = ptrViE->SetTraceFilter(webrtc::kTraceAll); 59 if (error == -1) 60 { 61 printf("ERROR in VideoEngine::SetTraceLevel\n"); 62 return -1; 66 ViETest::GetResultOutputPath() + "ViELoopbackCall_trace.txt"; 67 error = ptrViE->SetTraceFile(trace_file.c_str()); 68 if (error == -1)vie_autotest_custom_call.cc https://bitbucket.org/bohlooli/webrtc.git | C++ | 1,730 lines
181 error = voe_base->Init(); 182 number_of_errors += ViETest::TestError(error == 0, "ERROR: %s at line %d", 183 __FUNCTION__, __LINE__); 430 error = vie_rtp_rtcp->SetRembStatus(video_channel, true, true); 431 number_of_errors += ViETest::TestError(error == 0, "ERROR: %s at line %d", 432 __FUNCTION__, __LINE__); 434 error = vie_rtp_rtcp->SetTMMBRStatus(video_channel, true); 435 number_of_errors += ViETest::TestError(error == 0, "ERROR: %s at line %d", 436 __FUNCTION__, __LINE__); 1052 error = voe_hardware->GetNumOfRecordingDevices(number_of_recording_devices); 1053 number_of_errors += ViETest::TestError(error == 0, "ERROR: %s at line %d", 1054 __FUNCTION__, __LINE__); 1086 error = voe_hardware->GetNumOfPlayoutDevices(number_of_playback_devices); 1087 number_of_errors += ViETest::TestError(error == 0, "ERROR: %s at line %d", 1088 __FUNCTION__, __LINE__);c_opengl_debug.pyx https://bitbucket.org/kpozn/kivy.git | Cython | 702 lines
9 cgl.glActiveTexture ( texture) 10 ret = cgl.glGetError() 11 if ret: print "OpenGL Error %d / %x" % (ret, ret) 14 cgl.glAttachShader ( program, shader) 15 ret = cgl.glGetError() 16 if ret: print "OpenGL Error %d / %x" % (ret, ret) 19 cgl.glBindAttribLocation ( program, index, name) 20 ret = cgl.glGetError() 21 if ret: print "OpenGL Error %d / %x" % (ret, ret) 24 cgl.glBindBuffer ( target, buffer) 25 ret = cgl.glGetError() 26 if ret: print "OpenGL Error %d / %x" % (ret, ret) 29 cgl.glBindFramebuffer ( target, framebuffer) 30 ret = cgl.glGetError() 31 if ret: print "OpenGL Error %d / %x" % (ret, ret)log-2012-11-17.php https://bitbucket.org/viktorfabry/banditos.git | PHP | 116 lines
2 3ERROR - 2012-11-17 17:06:44 --> Plugin method "options" does not exist on class "Plugin_Theme". 4ERROR - 2012-11-17 17:06:54 --> Plugin method "options" does not exist on class "Plugin_Theme". 6ERROR - 2012-11-17 17:10:13 --> Plugin method "options" does not exist on class "Plugin_Theme". 7ERROR - 2012-11-17 17:10:44 --> Plugin method "options" does not exist on class "Plugin_Theme". 8ERROR - 2012-11-17 17:19:22 --> Plugin method "options" does not exist on class "Plugin_Theme". 8ERROR - 2012-11-17 17:19:22 --> Plugin method "options" does not exist on class "Plugin_Theme". 9ERROR - 2012-11-17 17:21:08 --> Plugin method "options" does not exist on class "Plugin_Theme". 10ERROR - 2012-11-17 17:21:40 --> Plugin method "options" does not exist on class "Plugin_Theme". 70ERROR - 2012-11-17 21:25:17 --> Severity: Notice --> Undefined property: CI::$blog_categories_m /Applications/MAMP/htdocs/banditos2/system/cms/libraries/MX/Controller.php 57 71ERROR - 2012-11-17 21:26:54 --> Query error: Unknown table 'default_blog' 72ERROR - 2012-11-17 21:32:38 --> Severity: Notice --> Undefined property: stdClass::$category_title /Applications/MAMP/htdocs/banditos2/addons/shared_addons/modules/calendar/views/admin/tables/posts.php 26 80ERROR - 2012-11-17 22:35:29 --> Query error: Unknown column 'status' in 'where clause' 81ERROR - 2012-11-17 22:53:41 --> Query error: Unknown column 'status' in 'where clause' 82ERROR - 2012-11-17 23:03:10 --> Severity: Notice --> Undefined property: stdClass::$category_title /Applications/MAMP/htdocs/banditos2/addons/shared_addons/modules/calendar/controllers/calendar.php 235S15.10.2.12_A3_T1.js https://bitbucket.org/beala/test262.git | JavaScript | 2,059 lines
16if (i0.replace(/\w+/g, "") !== o0) { 17 $ERROR("#0: Error matching character class \w between character 0 and ff"); 18} 24if (i1.replace(/\w+/g, "") !== o1) { 25 $ERROR("#1: Error matching character class \w between character 100 and 1ff"); 26} 32if (i2.replace(/\w+/g, "") !== o2) { 33 $ERROR("#2: Error matching character class \w between character 200 and 2ff"); 34} 40if (i3.replace(/\w+/g, "") !== o3) { 41 $ERROR("#3: Error matching character class \w between character 300 and 3ff"); 42} 48if (i4.replace(/\w+/g, "") !== o4) { 49 $ERROR("#4: Error matching character class \w between character 400 and 4ff"); 50}S15.10.2.12_A3_T1.js https://bitbucket.org/beala/test262.git | JavaScript | 2,058 lines
16if (i0.replace(/\w+/g, "") !== o0) { 17 $ERROR("#0: Error matching character class \w between character 0 and ff"); 18} 24if (i1.replace(/\w+/g, "") !== o1) { 25 $ERROR("#1: Error matching character class \w between character 100 and 1ff"); 26} 32if (i2.replace(/\w+/g, "") !== o2) { 33 $ERROR("#2: Error matching character class \w between character 200 and 2ff"); 34} 40if (i3.replace(/\w+/g, "") !== o3) { 41 $ERROR("#3: Error matching character class \w between character 300 and 3ff"); 42} 48if (i4.replace(/\w+/g, "") !== o4) { 49 $ERROR("#4: Error matching character class \w between character 400 and 4ff"); 50}S15.10.2.12_A3_T1.js https://bitbucket.org/beala/test262.git | JavaScript | 2,058 lines
16if (i0.replace(/\w+/g, "") !== o0) { 17 $ERROR("#0: Error matching character class \w between character 0 and ff"); 18} 24if (i1.replace(/\w+/g, "") !== o1) { 25 $ERROR("#1: Error matching character class \w between character 100 and 1ff"); 26} 32if (i2.replace(/\w+/g, "") !== o2) { 33 $ERROR("#2: Error matching character class \w between character 200 and 2ff"); 34} 40if (i3.replace(/\w+/g, "") !== o3) { 41 $ERROR("#3: Error matching character class \w between character 300 and 3ff"); 42} 48if (i4.replace(/\w+/g, "") !== o4) { 49 $ERROR("#4: Error matching character class \w between character 400 and 4ff"); 50}mingw.c https://bitbucket.org/ssaasen/git.git | C | 2,224 lines
17 case ERROR_ACCESS_DENIED: error = EACCES; break; 18 case ERROR_ACCOUNT_DISABLED: error = EACCES; break; 19 case ERROR_ACCOUNT_RESTRICTION: error = EACCES; break; 19 case ERROR_ACCOUNT_RESTRICTION: error = EACCES; break; 20 case ERROR_ALREADY_ASSIGNED: error = EBUSY; break; 21 case ERROR_ALREADY_EXISTS: error = EEXIST; break; 21 case ERROR_ALREADY_EXISTS: error = EEXIST; break; 22 case ERROR_ARITHMETIC_OVERFLOW: error = ERANGE; break; 23 case ERROR_BAD_COMMAND: error = EIO; break; 113 case ERROR_STACK_OVERFLOW: error = ENOMEM; break; 114 case ERROR_SWAPERROR: error = ENOENT; break; 115 case ERROR_TOO_MANY_MODULES: error = EMFILE; break; 226 } 227 while (ret == -1 && is_file_in_use_error(GetLastError()) && 228 ask_yes_no_if_possible("Unlink of file '%s' failed. "error.log https://bitbucket.org/duschmidt/camcontrol.git | Unknown | 112 lines
12[Sat Feb 09 14:41:00 2013] [error] [client 192.168.1.6] sys.path.insert('/home/pi/python/servo/') 13[Sat Feb 09 14:41:00 2013] [error] [client 192.168.1.6] TypeError: insert() takes exactly 2 arguments (1 given) 14[Sat Feb 09 14:41:00 2013] [error] [client 192.168.1.6] File does not exist: /home/pi/python/servo/public_html/favicon.ico 46[Sat Feb 09 14:50:15 2013] [error] [client 192.168.1.6] ^ 47[Sat Feb 09 14:50:15 2013] [error] [client 192.168.1.6] SyntaxError: invalid syntax 48[Sat Feb 09 14:50:15 2013] [error] [client 192.168.1.6] File does not exist: /home/pi/python/servo/public_html/favicon.ico 56[Sat Feb 09 14:53:08 2013] [error] [client 192.168.1.6] ^ 57[Sat Feb 09 14:53:08 2013] [error] [client 192.168.1.6] SyntaxError: invalid syntax 58[Sat Feb 09 14:53:08 2013] [error] [client 192.168.1.6] File does not exist: /home/pi/python/servo/public_html/favicon.ico 66[Sat Feb 09 14:53:15 2013] [error] [client 192.168.1.6] ^ 67[Sat Feb 09 14:53:15 2013] [error] [client 192.168.1.6] SyntaxError: invalid syntax 68[Sat Feb 09 14:53:15 2013] [error] [client 192.168.1.6] File does not exist: /home/pi/python/servo/public_html/favicon.ico 76[Sat Feb 09 14:53:24 2013] [error] [client 192.168.1.6] ^ 77[Sat Feb 09 14:53:24 2013] [error] [client 192.168.1.6] SyntaxError: invalid syntax 78[Sat Feb 09 14:53:24 2013] [error] [client 192.168.1.6] File does not exist: /home/pi/python/servo/public_html/favicon.icoNativeMenu-test.js https://bitbucket.org/stephenabritton/brackets.git | JavaScript | 1,627 lines
53 var complete = false, 54 error = 0, 55 title; 60 complete = true; 61 error = err; 62 }); 67 runs(function () { 68 expect(error).toBe(brackets.fs.ERR_NOT_FOUND); 69 }); 75 complete = true; 76 error = err; 77 }); 82 runs(function () { 83 expect(error).toBe(0); 84 });xfs_vnodeops.c https://bitbucket.org/DutchDanny/bindroid-xtc-onex.git | C | 2,394 lines
910 if (is_dir && dp->i_d.di_nlink >= XFS_MAXLINK) { 911 error = XFS_ERROR(EMLINK); 912 goto out_trans_cancel; 1421 if (sip->i_d.di_nlink >= XFS_MAXLINK) { 1422 error = XFS_ERROR(EMLINK); 1423 goto error_return; 1432 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) { 1433 error = XFS_ERROR(EXDEV); 1434 goto error_return; 1570 if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) { 1571 error = XFS_ERROR(EPERM); 1572 goto error_return; 1916 if (nimaps == 0) { 1917 error = XFS_ERROR(ENOSPC); 1918 break;ufs_vnops.c https://bitbucket.org/gthummalapalle/minix.git | C | 2,989 lines
141 } */ *ap = v; 142 int error; 143 struct vnode *dvp = ap->a_dvp; 159 fstrans_done(dvp->v_mount); 160 return (error); 161 } 183 struct inode *ip; 184 int error; 185 struct mount *mp; 1437 error = do_relookup(tdvp, &to_ulr, &tvp, tcnp); 1438 if (error && error != ENOENT) { 1439 VOP_UNLOCK(fdvp); 2505 if (error) { 2506 bp->b_error = error; 2507 biodone(bp);ufs_extattr.c https://bitbucket.org/gthummalapalle/minix.git | C | 1,551 lines
174 struct ufs_extattr_list_entry *uele; 175 int error; 176 216 217 error = vn_open(&nd, O_CREAT|O_RDWR, 0600); 218 226 227 if (error != 0) { 228 pathbuf_destroy(pb); 247 248 error = vn_rdwr(UIO_WRITE, backing_vp, &uef, sizeof(uef), 0, 249 UIO_SYSSPACE, IO_NODELOCKED|IO_APPEND, 253 254 if (error != 0) { 255 printf("%s: write uef header failed for %s, error = %d\n",