Home
last modified time | relevance | path

Searched refs:completed (Results 1 - 25 of 72) sorted by relevance

123

/third_party/node/test/parallel/
H A Dtest-http-server-request-timeouts-mixed.js43 completed: false
52 request.completed = true;
106 // After the first timeout, the first request should have been completed and second timedout
107 assert(request1.completed);
108 assert(request2.completed);
109 assert(!request3.completed);
110 assert(!request4.completed);
111 assert(!request5.completed);
123 // All request should be completed now, either with 200 or 408
124 assert(request3.completed);
[all...]
/third_party/node/deps/npm/node_modules/are-we-there-yet/lib/
H A Dtracker-group.js42 this.completion[unit.id] = unit.completed()
50 completed () {
55 var completed = 0
58 completed +=
61 return completed
91 let output = `${indent}${this.name || 'top'}: ${this.completed()}\n`
96 : `${indent} ${tracker.name}: ${tracker.completed()}\n`
103 return function (name, completed, tracker) {
104 trackerGroup.completion[tracker.id] = completed
108 trackerGroup.emit('change', name || trackerGroup.name, trackerGroup.completed(), trackerGrou
[all...]
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/
H A Dbuild-docker.sh103 echo $(date): Build completed.
108 echo $(date): Check coverage completed.
115 echo $(date): ctest completed.
153 echo $(date): Build completed.
160 echo $(date): ctest completed.
181 echo $(date): Build completed.
196 echo $(date): ndk-build completed.
202 echo $(date): Build completed.
206 echo $(date): Bazel test completed.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/
H A Dbuild-docker.sh103 echo $(date): Build completed.
108 echo $(date): Check coverage completed.
115 echo $(date): ctest completed.
153 echo $(date): Build completed.
160 echo $(date): ctest completed.
181 echo $(date): Build completed.
196 echo $(date): ndk-build completed.
202 echo $(date): Build completed.
206 echo $(date): Bazel test completed.
/third_party/spirv-tools/kokoro/scripts/linux/
H A Dbuild-docker.sh98 echo $(date): Build completed.
103 echo $(date): Check coverage completed.
110 echo $(date): ctest completed.
149 echo $(date): Build completed.
156 echo $(date): ctest completed.
177 echo $(date): Build completed.
192 echo $(date): ndk-build completed.
198 echo $(date): Build completed.
202 echo $(date): Bazel test completed.
/third_party/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog.h45 void SetProgress(UInt64 total, UInt64 completed) in SetProgress() argument
49 _completed = completed; in SetProgress()
51 void SetPos(UInt64 completed) in SetPos() argument
54 _completed = completed; in SetPos()
56 void GetProgress(UInt64 &total, UInt64 &completed) in GetProgress() argument
60 completed = _completed; in GetProgress()
H A DProgressDialog.cpp110 UInt64 total, completed; in OnTimer() local
111 Sync.GetProgress(total, completed); in OnTimer()
114 SetPos(completed); in OnTimer()
119 const UInt64 percentValue = completed * 100 / total; in OnTimer()
/third_party/ltp/testcases/kernel/crypto/
H A Daf_alg02.c26 static int volatile completed; variable
53 completed = 1; in verify_encrypt()
61 completed = 0; in run()
67 while (!completed) { in run()
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-post/
H A Dminimal-http-client-post.c20 static int interrupted, bad = 0, status, count_clients = 1, completed; variable
43 if (++completed == count_clients) in callback_http()
52 if (++completed == count_clients) in callback_http()
88 if (++completed == count_clients) in callback_http()
267 completed++; in main()
270 while (n >= 0 && completed != count_clients && !interrupted) in main()
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
H A Dsync_restricted_traces_to_cipd.py31 completed = subprocess.run([exe] + list(args), stderr=subprocess.STDOUT)
32 if completed.stdout:
33 logging.debug('cipd stdout:\n%s' % completed.stdout)
34 return completed.returncode
/third_party/eudev/src/scsi_id/
H A Dscsi_serial.c887 goto completed; in scsi_get_serial()
890 goto completed; in scsi_get_serial()
895 goto completed; in scsi_get_serial()
898 goto completed; in scsi_get_serial()
911 goto completed; in scsi_get_serial()
914 goto completed; in scsi_get_serial()
919 goto completed; in scsi_get_serial()
923 goto completed; in scsi_get_serial()
928 goto completed; in scsi_get_serial()
942 goto completed; in scsi_get_serial()
[all...]
/third_party/libfuse/lib/
H A Dhelper.c258 char completed; in fuse_daemonize() local
276 (void) read(waiter[0], &completed, sizeof(completed)); in fuse_daemonize()
297 completed = 1; in fuse_daemonize()
298 (void) write(waiter[1], &completed, sizeof(completed)); in fuse_daemonize()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DQuery9.cpp143 BOOL completed = FALSE; in testQuery() local
144 result = mQuery->GetData(&completed, sizeof(completed), D3DGETDATA_FLUSH); in testQuery()
148 mResult = (completed == TRUE) ? GL_TRUE : GL_FALSE; in testQuery()
/third_party/node/deps/npm/node_modules/node-gyp/bin/
H A Dnode-gyp.js17 let completed = false
75 completed = true
105 if (!completed && !code) {
/third_party/node/deps/npm/node_modules/gauge/lib/
H A Dindex.js213 Gauge.prototype.show = function (section, completed) {
224 if (completed != null) {
225 this._status.completed = completed
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DQuery11.cpp324 BOOL completed = 0; in testQuery() local
326 context->GetData(queryState->query.get(), &completed, sizeof(completed), 0); in testQuery()
332 ASSERT(completed == TRUE); in testQuery()
333 mResult = (completed == TRUE) ? GL_TRUE : GL_FALSE; in testQuery()
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-echo/
H A Dprotocol_lws_minimal_server_echo.c37 uint8_t completed:1; member
151 pss->completed = 1; in callback_minimal_server_echo()
213 *vhd->interrupted = 1 + pss->completed; in callback_minimal_server_echo()
/third_party/node/deps/undici/src/lib/core/
H A Drequest.js152 this.completed = false
256 assert(!this.completed)
268 assert(!this.completed)
283 assert(!this.completed)
295 assert(!this.completed)
305 this.completed = true
/third_party/python/Lib/idlelib/
H A Dautocomplete_w.py173 completed = self._complete_string(self.start)
175 self._change_start(completed)
176 i = self._binary_search(completed)
177 if self.completions[i] == completed and \
179 self.completions[i+1][:len(completed)] != completed):
181 return completed == start
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-cpp/
H A Dmain.cxx17 static int interrupted, bad = 1, concurrent = 1, completed; variable
31 if (++completed == concurrent) { in lss_completion()
/third_party/node/deps/npm/node_modules/npmlog/lib/
H A Dlog.js157 log.showProgress = function (name, completed) {
179 values.completed = completed || this.tracker.completed()
/third_party/libwebsockets/plugins/
H A Dprotocol_post_demo.c49 uint8_t completed:1; member
208 pss->completed = 1; in callback_post_demo()
213 if (!pss->completed) in callback_post_demo()
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-echo/
H A Dprotocol_lws_minimal_client_echo.c37 uint8_t completed:1; member
191 pss->completed = 1; in callback_minimal_client_echo()
265 *vhd->interrupted = 1 + pss->completed; in callback_minimal_client_echo()
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/
H A Dminimal-http-client-multi.c54 static int completed, failed, numbered, stagger_idx, posting, count = COUNT, variable
254 * If it completed normally, it will have been set to in callback_http()
332 if (++completed == count) { in callback_http()
398 if (++completed == count) { in lws_try_client_connection()
702 lwsl_user("Exiting with %d\n", failed || completed != count); in main()
704 return failed || completed != count; in main()
/third_party/cups-filters/scripting/php/
H A Dphpcups.c309 completed; /* Show completed jobs? */ in PHP_FUNCTION() local
320 zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sll", &dest, &dest_len, &myjobs, &completed)) in PHP_FUNCTION()
328 if ((num_jobs = cupsGetJobs(&jobs, dest, myjobs, completed)) <= 0) in PHP_FUNCTION()

Completed in 12 milliseconds

123