| /third_party/node/test/parallel/ |
| D | test-http-expect-continue.js | 33 assert.ok(sent_continue, 'Full response sent before 100 Continue'); 34 console.error('Server sending full response...'); 36 'Content-Type': 'text/plain', 43 server.on('checkContinue', common.mustCall((req, res) => { 44 console.error('Server got Expect: 100-continue...'); 54 server.on('listening', common.mustCall(() => { 59 headers: { 'Expect': '100-continue' } 61 console.error('Client sending request...'); 63 req.on('continue', common.mustCall(() => { 64 console.error('Client got 100 Continue...'); [all …]
|
| D | test-http-sync-write-error-during-continue.js | 14 serverSide.on('data', common.mustCall((data) => { 17 Expect: 100-continue 24 serverSide.write('HTTP/1.1 100 Continue\r\n\r\n'); 31 'Expect': '100-continue' 34 req.on('continue', common.mustCall((res) => { 40 // On affected versions of Node.js, the error would be emitted on `req` 42 // parser.finish() to be called while we are here in the 'continue' 46 clientSide.destroy(new Error('sometimes the code just doesn’t work'), cb); 48 req.on('error', common.mustCall());
|
| /third_party/python/Lib/test/ |
| D | test__locale.py | 1 from _locale import (setlocale, LC_ALL, LC_CTYPE, LC_NUMERIC, localeconv, Error) 28 'fr_FR.ISO8859-1', 'fr_FR.UTF-8', 'fr_FR.ISO8859-15@euro', 29 'ru_RU.KOI8-R', 'ko_KR.eucKR'] 33 # Issue #13441: Skip some locales (e.g. cs_CZ and hu_HU) on Solaris to 34 # workaround a mbstowcs() bug. For example, on Solaris, the hu_HU locale uses 35 # the locale encoding ISO-8859-2, the thousands separator is b'\xA0' and it is 44 except Error: 45 continue 62 return not(len(a) == 2 and len(a[-1]) >= 9) 71 # The French thousands separator may be a breaking or non-breaking space [all …]
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
| D | SyncVk.cpp | 3 // Use of this source code is governed by a BSD-style license that can be 36 // If timeoutNs was non-zero but less than one millisecond, make it a millisecond. in SyncWaitFd() 62 } while (ret == -1 && (errno == EINTR || errno == EAGAIN)); in SyncWaitFd() 89 // - This breaks the current render pass to ensure the proper ordering of the sync object in the in initialize() 91 // - The sync object has a valid serial when it's waited on later, in initialize() 92 // - After waiting on the sync object, every resource that's used so far (and is being synced) in initialize() 93 // will also be aware that it's finished (based on the serial) and won't incur a further wait in initialize() 96 retain(&contextVk->getResourceUseList()); in initialize() 97 return contextVk->flushImpl(nullptr, RenderPassClosureReason::SyncObjectInit); in initialize() 106 RendererVk *renderer = context->getRenderer(); in clientWait() [all …]
|
| /third_party/libwebsockets/lib/plat/windows/ |
| D | windows-sockets.c | 2 * libwebsockets - small server side websockets and web server implementation 4 * Copyright (C) 2010 - 2021 Andy Green <andy@warmcat.com> 29 #include "private-lib-core.h" 48 /* the fact we checked implies we avoided back-to-back writes */ in lws_send_pipe_choked() 49 wsi_eff->could_have_pending = 0; in lws_send_pipe_choked() 54 ||wsi->http.comp_ctx.buflist_comp || in lws_send_pipe_choked() 55 wsi->http.comp_ctx.may_have_more in lws_send_pipe_choked() 60 return (int)wsi_eff->sock_send_blocking; in lws_send_pipe_choked() 69 assert((fd->events & LWS_POLLIN) == LWS_POLLIN); in lws_poll_listen_fd() 72 FD_SET(fd->fd, &readfds); in lws_poll_listen_fd() [all …]
|
| /third_party/libuv/src/unix/ |
| D | process.c | 63 # include "zos-base.h" 80 uv__wait_children(handle->loop); in uv__chld() 87 err = uv_signal_init(loop, &loop->child_watcher); in uv__process_init() 90 uv__handle_unref(&loop->child_watcher); in uv__process_init() 91 loop->child_watcher.flags |= UV_HANDLE_INTERNAL; in uv__process_init() 98 memset(&loop->child_watcher, 0, sizeof(loop->child_watcher)); in uv__process_init() 117 h = &loop->process_handles; in uv__wait_children() 124 if ((process->flags & UV_HANDLE_REAP) == 0) in uv__wait_children() 125 continue; in uv__wait_children() 127 process->flags &= ~UV_HANDLE_REAP; in uv__wait_children() [all …]
|
| /third_party/node/deps/uv/src/unix/ |
| D | process.c | 63 # include "zos-base.h" 80 uv__wait_children(handle->loop); in uv__chld() 97 h = &loop->process_handles; in uv__wait_children() 104 if ((process->flags & UV_HANDLE_REAP) == 0) in uv__wait_children() 105 continue; in uv__wait_children() 107 process->flags &= ~UV_HANDLE_REAP; in uv__wait_children() 113 pid = waitpid(process->pid, &status, options); in uv__wait_children() 114 while (pid == -1 && errno == EINTR); in uv__wait_children() 118 continue; in uv__wait_children() 121 if (pid == -1) { in uv__wait_children() [all …]
|
| /third_party/selinux/libselinux/src/ |
| D | selinux_restorecon.c | 51 /* Information on excluded fs and directories. */ 67 /* Store information on directories with xattr's. */ 113 * remove_exclude() - This removes any conflicting entries as there could be 114 * a case where a non-seclabel fs is mounted on /foo and 115 * then a seclabel fs is mounted on top of it. 119 * add_exclude() - Add a directory/fs to be excluded from labeling. If it 122 * check_excluded() - Check if directory/fs is to be excluded when relabeling. 124 * file_system_count() - Calculates the number of files to be processed. 128 * exclude_non_seclabel_mounts() - Reads /proc/mounts to determine what 129 * non-seclabel mounts to exclude from [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | invalidWhileContinueStatements.errors.txt | 1 …ents/continueStatements/invalidWhileContinueStatements.ts(4,1): error TS1104: A 'continue' stateme… 2 …nts/continueStatements/invalidWhileContinueStatements.ts(8,14): error TS1115: A 'continue' stateme… 3 …ce/statements/continueStatements/invalidWhileContinueStatements.ts(14,9): error TS1107: Jump targe… 4 …ce/statements/continueStatements/invalidWhileContinueStatements.ts(21,9): error TS1107: Jump targe… 5 …nts/continueStatements/invalidWhileContinueStatements.ts(27,5): error TS1115: A 'continue' stateme… 6 …nts/continueStatements/invalidWhileContinueStatements.ts(37,5): error TS1115: A 'continue' stateme… 12 // naked continue not allowed 13 continue; 15 !!! error TS1104: A 'continue' statement can only be used within an enclosing iteration statement. 17 // non-existent label [all …]
|
| D | invalidForContinueStatements.errors.txt | 1 …ements/continueStatements/invalidForContinueStatements.ts(4,1): error TS1104: A 'continue' stateme… 2 …ements/continueStatements/invalidForContinueStatements.ts(8,9): error TS1115: A 'continue' stateme… 3 tests/cases/conformance/statements/continueStatements/invalidForContinueStatements.ts(14,9): error … 4 tests/cases/conformance/statements/continueStatements/invalidForContinueStatements.ts(21,9): error … 5 …ments/continueStatements/invalidForContinueStatements.ts(27,5): error TS1115: A 'continue' stateme… 6 …ments/continueStatements/invalidForContinueStatements.ts(36,5): error TS1115: A 'continue' stateme… 12 // naked continue not allowed 13 continue; 15 !!! error TS1104: A 'continue' statement can only be used within an enclosing iteration statement. 17 // non-existent label [all …]
|
| D | invalidDoWhileContinueStatements.errors.txt | 1 …ts/continueStatements/invalidDoWhileContinueStatements.ts(4,1): error TS1104: A 'continue' stateme… 2 …ts/continueStatements/invalidDoWhileContinueStatements.ts(8,4): error TS1115: A 'continue' stateme… 3 …/statements/continueStatements/invalidDoWhileContinueStatements.ts(14,9): error TS1107: Jump targe… 4 …/statements/continueStatements/invalidDoWhileContinueStatements.ts(21,9): error TS1107: Jump targe… 5 …s/continueStatements/invalidDoWhileContinueStatements.ts(27,5): error TS1115: A 'continue' stateme… 6 …s/continueStatements/invalidDoWhileContinueStatements.ts(37,5): error TS1115: A 'continue' stateme… 12 // naked continue not allowed 13 continue; 15 !!! error TS1104: A 'continue' statement can only be used within an enclosing iteration statement. 17 // non-existent label [all …]
|
| D | invalidForInContinueStatements.errors.txt | 1 …ents/continueStatements/invalidForInContinueStatements.ts(4,1): error TS1104: A 'continue' stateme… 2 …nts/continueStatements/invalidForInContinueStatements.ts(8,19): error TS1115: A 'continue' stateme… 3 …ce/statements/continueStatements/invalidForInContinueStatements.ts(14,9): error TS1107: Jump targe… 4 …ce/statements/continueStatements/invalidForInContinueStatements.ts(21,9): error TS1107: Jump targe… 5 …nts/continueStatements/invalidForInContinueStatements.ts(27,5): error TS1115: A 'continue' stateme… 6 …nts/continueStatements/invalidForInContinueStatements.ts(37,5): error TS1115: A 'continue' stateme… 12 // naked continue not allowed 13 continue; 15 !!! error TS1104: A 'continue' statement can only be used within an enclosing iteration statement. 17 // non-existent label [all …]
|
| D | plainJSGrammarErrors.errors.txt | 1 …error TS1451: Private identifiers are only allowed in class bodies and may only be used as part of… 2 …error TS1451: Private identifiers are only allowed in class bodies and may only be used as part of… 3 tests/cases/conformance/salsa/plainJSGrammarErrors.js(10,15): error TS2803: Cannot assign to privat… 4 tests/cases/conformance/salsa/plainJSGrammarErrors.js(14,13): error TS18038: 'For await' loops cann… 5 tests/cases/conformance/salsa/plainJSGrammarErrors.js(17,9): error TS18041: A 'return' statement ca… 6 …es/conformance/salsa/plainJSGrammarErrors.js(20,5): error TS1089: 'static' modifier cannot appear … 7 …ses/conformance/salsa/plainJSGrammarErrors.js(21,5): error TS1089: 'async' modifier cannot appear … 8 tests/cases/conformance/salsa/plainJSGrammarErrors.js(22,5): error TS8009: The 'const' modifier can… 9 tests/cases/conformance/salsa/plainJSGrammarErrors.js(22,11): error TS1248: A class member cannot h… 10 tests/cases/conformance/salsa/plainJSGrammarErrors.js(23,5): error TS8009: The 'const' modifier can… [all …]
|
| /third_party/rust/crates/clap/.github/workflows/ |
| D | rust-next.yml | 1 name: rust-next 2 on: 4 - cron: '3 3 3 * *' 15 - build: stable 16 os: ubuntu-latest 19 - build: linux 20 os: ubuntu-latest 23 - build: windows 24 os: windows-latest 27 - build: mac [all …]
|
| /third_party/mesa3d/src/amd/vulkan/radix_sort/shaders/ |
| D | scatter.glsl | 2 // Use of this source code is governed by a BSD-style license that can be 5 // #pragma use_vulkan_memory_model // results in spirv-remap validation error 10 // clang-format off 16 // clang-format on 79 #error "Undefined: RS_KEYVAL_DWORDS" 84 #error "Undefined: RS_SCATTER_KEYVAL_DWORD_BASE" 89 #error "Undefined: RS_SCATTER_BLOCK_ROWS" 94 #error "Undefined: RS_SCATTER_SUBGROUP_SIZE_LOG2" 99 #error "Undefined: RS_SCATTER_WORKGROUP_SIZE_LOG2" 107 #error "Undefined: RS_PARTITION_STATUS_INVALID" [all …]
|
| /third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
| D | connection.c | 3 Copyright (C) 2007-2015 Daniel Pittman and Christian Grothoff 17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 51 #define HTTP_100_CONTINUE "HTTP/1.1 100 Continue\r\n\r\n" 93 * Response text used when there is an internal server error. 99 #define INTERNAL_ERROR "<html><head><title>Internal server error</title></head><body>Some programme… 106 * (non-error reasons). 121 * @param iterator callback to call on each header; 136 return -1; in MHD_get_connection_values() 138 for (pos = connection->headers_received; NULL != pos; pos = pos->next) in MHD_get_connection_values() 139 if (0 != (pos->kind & kind)) in MHD_get_connection_values() [all …]
|
| /third_party/node/deps/uv/src/win/ |
| D | tty.c | 28 # include "uv/stdint-msvc2008.h" 39 #include "handle-inl.h" 40 #include "stream-inl.h" 41 #include "req-inl.h" 107 * mean that it would extend beyond the bottom of the screen buffer - in that 114 * Since all tty i/o happens on the same console, this window is shared 118 static int uv_tty_virtual_offset = -1; 119 static int uv_tty_virtual_height = -1; 120 static int uv_tty_virtual_width = -1; 128 static int uv__tty_console_height = -1; [all …]
|
| /third_party/libuv/src/win/ |
| D | tty.c | 34 #include "handle-inl.h" 35 #include "stream-inl.h" 36 #include "req-inl.h" 102 * mean that it would extend beyond the bottom of the screen buffer - in that 109 * Since all tty i/o happens on the same console, this window is shared 113 static int uv_tty_virtual_offset = -1; 114 static int uv_tty_virtual_height = -1; 115 static int uv_tty_virtual_width = -1; 123 static int uv__tty_console_height = -1; 124 static int uv__tty_console_width = -1; [all …]
|
| /third_party/lz4/programs/ |
| D | lz4cli.c | 2 LZ4cli - LZ4 Command Line Interface 3 Copyright (C) Yann Collet 2011-2020 19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 22 - LZ4 source repository : https://github.com/lz4/lz4 23 - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c 26 Note : this is stand-alone program. 53 #define WELCOME_MESSAGE "*** %s %i-bits v%s, by %s ***\n", COMPRESSOR_NAME, (int)(sizeof(void*)*8),… 67 /*-************************************ 73 … 2; /* 0 : no display ; 1: errors only ; 2 : downgradable normal ; 3 : non-downgradable normal; … 76 /*-************************************ [all …]
|
| /third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
| D | es31cTextureStorageMultisampleSampleMaskiTests.cpp | 1 /*------------------------------------------------------------------------- 3 * ----------------------------- 5 * Copyright (c) 2014-2016 The Khronos Group Inc. 11 * http://www.apache.org/licenses/LICENSE-2.0 14 * distributed under the License is distributed on an "AS IS" BASIS, 22 */ /*-------------------------------------------------------------------*/ 28 */ /*-------------------------------------------------------------------*/ 50 …"Verifies glSampleMaski() correctly accepts index arguments up to GL_MAX_SAMPLE_MASK_WORDS-1 value… in MultisampleTextureSampleMaskiIndexLowerThanGLMaxSampleMaskWordsTest() 52 /* Left blank on purpose */ in MultisampleTextureSampleMaskiIndexLowerThanGLMaxSampleMaskWordsTest() 57 * @return Returns STOP when test has finished executing, CONTINUE if more iterations are needed. [all …]
|
| D | es31cTextureStorageMultisampleGetMultisamplefvTests.cpp | 1 /*------------------------------------------------------------------------- 3 * ----------------------------- 5 * Copyright (c) 2014-2016 The Khronos Group Inc. 11 * http://www.apache.org/licenses/LICENSE-2.0 14 * distributed under the License is distributed on an "AS IS" BASIS, 22 */ /*-------------------------------------------------------------------*/ 29 */ /*-------------------------------------------------------------------*/ 53 /* Left blank on purpose */ in MultisampleTextureGetMultisamplefvIndexEqualGLSamplesRejectedTest() 58 * @return Returns STOP when test has finished executing, CONTINUE if more iterations are needed. 74 /* Check if the expected error code was reported */ in iterate() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/WindowsManifest/ |
| D | WindowsManifestMerger.cpp | 1 //===-- WindowsManifestMerger.cpp ------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===---------------------------------------------------------------------===// 11 //===---------------------------------------------------------------------===// 38 Error merge(const MemoryBuffer &Manifest); 43 Error getParseError(); 62 {"urn:schemas-microsoft-com:asm.v1", "ms_asmv1"}, 63 {"urn:schemas-microsoft-com:asm.v2", "ms_asmv2"}, 64 {"urn:schemas-microsoft-com:asm.v3", "ms_asmv3"}, 67 {"urn:schemas-microsoft-com:compatibility.v1", "ms_compatibilityv1"}}; [all …]
|
| /third_party/skia/third_party/externals/icu/source/tools/gennorm2/ |
| D | gennorm2.cpp | 6 * Copyright (C) 2009-2014, International Business Machines 11 * encoding: UTF-8 15 * created on: 2009nov25 53 /* -------------------------------------------------------------------------- */ 89 /* error handling, printing usage message */ in main() 92 "error in command line argument \"%s\"\n", in main() 93 argv[-argc]); in main() 96 argc=-1; in main() 102 "Usage: %s [-options] infiles+ -o outputfilename\n" in main() 105 "creates a binary file, or a C source file (--csource), with the data,\n" in main() [all …]
|
| /third_party/icu/icu4c/source/tools/gennorm2/ |
| D | gennorm2.cpp | 6 * Copyright (C) 2009-2014, International Business Machines 11 * encoding: UTF-8 15 * created on: 2009nov25 53 /* -------------------------------------------------------------------------- */ 89 /* error handling, printing usage message */ in main() 92 "error in command line argument \"%s\"\n", in main() 93 argv[-argc]); in main() 96 argc=-1; in main() 102 "Usage: %s [-options] infiles+ -o outputfilename\n" in main() 105 "creates a binary file, or a C source file (--csource), with the data,\n" in main() [all …]
|
| /third_party/skia/third_party/externals/abseil-cpp/ |
| D | generate_def_files.py | 5 This script generates //third_party/abseil-app/absl/symbols_*.def at Abseil 9 Abseil's symbols as publicly visible. On POSIX it is possible to use 10 -fvisibility=default but on Windows a .def file with all the symbols 13 Unless you are on a Windows machine, you need to set up your Chromium 14 checkout for cross-compilation by following the instructions at 16 If you are on Windows, you may need to tweak this script to run, e.g. by 17 changing "gn" to "gn.bat", changing "llvm-nm" to the name of your copy of 18 llvm-nm, etc. 38 # We need to start on "| ?" and end on the first " (" (stopping on space would 54 """Generates a .def file for the absl component build on the specified CPU.""" [all …]
|