| /third_party/typescript_eslint/.github/workflows/ |
| D | ci.yml | 6 - master 7 # TODO - delete this before merging v4 into master 8 - v4 11 - '**' 19 runs-on: ubuntu-latest 21 - uses: actions/checkout@v2 23 - name: echo github.ref 26 - name: Use Node.js ${{ env.PRIMARY_NODE_VERSION }} 27 uses: actions/setup-node@v1 29 node-version: ${{ env.PRIMARY_NODE_VERSION }} [all …]
|
| D | manual-release.yml | 11 runs-on: ubuntu-latest 13 - uses: actions/checkout@v2 20 fetch-depth: 0 22 - name: Verify head of master hasn't changed 26 if [ "$GITHUB_SHA" != "$(git rev-parse --verify HEAD)" ]; then 29 echo "Actual: $(git rev-parse --verify HEAD)" 33 - name: Get yarn cache directory path 34 id: yarn-cache-dir-path 35 run: echo "::set-output name=dir::$(yarn cache dir)" 37 - uses: actions/cache@v2 [all …]
|
| /third_party/protobuf/csharp/compatibility_tests/v3.0.0/ |
| D | test.sh | 5 $1 -Iprotos/src -I../../../src/ --csharp_out=src/Google.Protobuf.Test \ 6 --csharp_opt=base_namespace=Google.Protobuf \ 11 $1 -Iprotos/csharp --csharp_out=src/Google.Protobuf.Test \ 12 --csharp_opt=base_namespace=UnitTest.Issues \ 15 $2 -Iprotos/src --csharp_out=src/Google.Protobuf.Test \ 16 --csharp_opt=base_namespace=Google.Protobuf \ 21 dotnet restore src/Google.Protobuf/Google.Protobuf.csproj 22 dotnet restore src/Google.Protobuf.Test/Google.Protobuf.Test.csproj 23 dotnet build -c Release src/Google.Protobuf/Google.Protobuf.csproj 24 dotnet build -c Release src/Google.Protobuf.Test/Google.Protobuf.Test.csproj [all …]
|
| /third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
| D | page_storage.dart | 2 // Use of this source code is governed by a BSD-style license that can be 13 /// [PageStorage] is used to save and restore values that can outlive the widget. 14 /// The values are stored in a per-route [Map] whose keys are defined by the 40 _StorageEntryIdentifier(this.keys) 41 : assert(keys != null); 43 final List<PageStorageKey<dynamic>> keys; 45 bool get isNotEmpty => keys.isNotEmpty; 52 for (int index = 0; index < keys.length; index += 1) { 53 if (keys[index] != typedOther.keys[index]) 60 int get hashCode => hashList(keys); [all …]
|
| /third_party/python/Lib/curses/ |
| D | __init__.py | 58 # Wrapper for the entire curses-based application. Runs a function which 59 # should be the rest of your curses-based application. If the application 60 # raises an exception, wrapper() will restore the terminal to a sane state so 75 # Turn off echoing of keys, and enter cbreak mode, 80 # In keypad mode, escape sequences for special keys 81 # (like the cursor keys) will be interpreted and 87 # works around a minor bit of over-conscientiousness in the curses 88 # module -- the error return from C start_color() is ignorable.
|
| /third_party/benchmark/.github/workflows/ |
| D | bazel.yml | 8 build-and-test: 9 runs-on: ubuntu-latest 12 - uses: actions/checkout@v1 14 - name: mount bazel cache 17 cache-name: bazel-cache 20 key: ${{ env.cache-name }}-${{ runner.os }}-${{ github.ref }} 21 restore-keys: | 22 ${{ env.cache-name }}-${{ runner.os }}-main 24 - name: build 28 - name: test [all …]
|
| /third_party/boost/boost/move/algo/ |
| D | adaptive_sort.hpp | 3 // (C) Copyright Ion Gaztanaga 2015-2016. 37 //rotate_gcd(first-l_block, first+len-l_block, first+len); in move_data_backward() 54 //rotate_gcd(first-l_block, first+len-l_block, first+len); in move_data_forward() 64 // [first+len-l_build_buf, first+len). To achieve this: 65 // - If we have external memory to merge, we save elements from the buffer 66 // so that a non-swapping merge is used. Buffer elements are restored 69 // - When the external memory is not available or it is insufficient 76 // As a last step, if auxiliary memory is available in-place merge is performed. 90 BOOST_ASSERT(0 == ((l_build_buf / l_base)&(l_build_buf/l_base-1))); in adaptive_sort_build_blocks() 94 size_type const elements_in_blocks = len - l_build_buf; in adaptive_sort_build_blocks() [all …]
|
| /third_party/flutter/skia/third_party/externals/imgui/examples/ |
| D | imgui_impl_allegro5.cpp | 2 // (Info: Allegro 5 is a cross-platform general purpose library for handling windows, inputs, graph… 18 // 2018-11-30: Misc: Setting up io.BackendPlatformName/io.BackendRendererName so they can be displ… 19 // 2018-06-13: Platform: Added clipboard support (from Allegro 5.1.12). 20 // 2018-06-13: Renderer: Use draw_data->DisplayPos and draw_data->DisplaySize to setup projection … 21 // 2018-06-13: Renderer: Backup/restore transform and clipping rectangle. 22 // 2018-06-11: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiCon… 23 // 2018-04-18: Misc: Renamed file from imgui_impl_a5.cpp to imgui_impl_allegro5.cpp. 24 // 2018-04-18: Misc: Added support for 32-bits vertex indices to avoid conversion at runtime. Adde… 25 // 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplAllegro5_Re… 26 // 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user … [all …]
|
| /third_party/node/deps/npm/node_modules/qs/ |
| D | CHANGELOG.md | 2 - [Fix] use `safer-buffer` instead of `Buffer` constructor 3 - [Refactor] utils: `module.exports` one thing, instead of mutating `exports` (#230) 4 - [Dev Deps] update `browserify`, `eslint`, `iconv-lite`, `safer-buffer`, `tape`, `browserify` 7 - [Fix] Fix parsing & compacting very deep objects (#224) 8 - [Refactor] name utils functions 9 - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` 10 - [Tests] up to `node` `v8.4`; use `nvm install-latest-npm` so newer npm doesn’t break older node 11 - [Tests] Use precise dist for Node.js 0.6 runtime (#225) 12 - [Tests] make 0.6 required, now that it’s passing 13 - [Tests] on `node` `v8.2`; fix npm on node 0.6 [all …]
|
| /third_party/mbedtls/programs/ssl/ |
| D | ssl_test_common_source.c | 12 * SPDX-License-Identifier: Apache-2.0 18 * http://www.apache.org/licenses/LICENSE-2.0 35 eap_tls_keys *keys = (eap_tls_keys *)p_expkey; in eap_tls_key_derivation() local 40 if( secret_len != sizeof( keys->master_secret ) ) in eap_tls_key_derivation() 43 memcpy( keys->master_secret, secret, sizeof( keys->master_secret ) ); in eap_tls_key_derivation() 44 memcpy( keys->randbytes, client_random, 32 ); in eap_tls_key_derivation() 45 memcpy( keys->randbytes + 32, server_random, 32 ); in eap_tls_key_derivation() 46 keys->tls_prf_type = tls_prf_type; in eap_tls_key_derivation() 91 mbedtls_printf( "---------------- NSS KEYLOG -----------------\n" ); in nss_keylog_export() 93 mbedtls_printf( "---------------------------------------------\n" ); in nss_keylog_export() [all …]
|
| /third_party/grpc/tools/dockerfile/distribtest/csharp_jessie_x86/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 RUN apt-get update && apt-get install -y apt-transport-https && apt-get clean 19 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19… 20 … echo "deb https://download.mono-project.com/repo/debian stable-jessie main" | tee /etc/apt/source… 22 RUN apt-get update && apt-get install -y \ 23 mono-devel \ 25 && apt-get clean 27 RUN apt-get update && apt-get install -y unzip && apt-get clean 29 # Make sure the mono certificate store is up-to-date to prevent issues with nuget restore 30 RUN apt-get update && apt-get install -y curl && apt-get clean [all …]
|
| /third_party/grpc/tools/dockerfile/distribtest/csharp_jessie_x64/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 RUN apt-get update && apt-get install -y apt-transport-https && apt-get clean 19 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19… 20 … echo "deb https://download.mono-project.com/repo/debian stable-jessie main" | tee /etc/apt/source… 22 RUN apt-get update && apt-get install -y \ 23 mono-devel \ 25 && apt-get clean 27 RUN apt-get update && apt-get install -y unzip && apt-get clean 29 # Make sure the mono certificate store is up-to-date to prevent issues with nuget restore 30 RUN apt-get update && apt-get install -y curl && apt-get clean [all …]
|
| /third_party/skia/third_party/externals/imgui/backends/ |
| D | imgui_impl_allegro5.cpp | 2 // (Info: Allegro 5 is a cross-platform general purpose library for handling windows, inputs, graph… 19 // 2021-08-17: Calling io.AddFocusEvent() on ALLEGRO_EVENT_DISPLAY_SWITCH_OUT/ALLEGRO_EVENT_DISPLA… 20 … 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with mu… 21 // 2021-05-19: Renderer: Replaced direct access to ImDrawCmd::TextureId with a call to ImDrawCmd::… 22 // 2021-02-18: Change blending equation to preserve alpha in output buffer. 23 // 2020-08-10: Inputs: Fixed horizontal mouse wheel direction. 24 // 2019-12-05: Inputs: Added support for ImGuiMouseCursor_NotAllowed mouse cursor. 25 // 2019-07-21: Inputs: Added mapping for ImGuiKey_KeyPadEnter. 26 // 2019-05-11: Inputs: Don't filter character value from ALLEGRO_EVENT_KEY_CHAR before calling Add… 27 // 2019-04-30: Renderer: Added support for special ImDrawCallback_ResetRenderState callback to res… [all …]
|
| /third_party/openssl/crypto/bn/asm/ |
| D | s390x-mont.pl | 2 # Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved. 22 # 64x64=128-bit multiplication, which is not commonly available to C 23 # programmers], at least hand-coded bn_asm.c replacement is known to 24 # provide 30-40% better results for longest keys. Well, on a second 25 # thought it's not very surprising, because z-CPUs are single-issue 26 # and _strictly_ in-order execution, while bn_mul_mont is more or less 27 # dependent on CPU ability to pipe-line instructions and have several 28 # of them "in-flight" at the same time. I mean while other methods, 34 # module performance by implementing dedicated squaring code-path and 40 # make inner loops counter-based. [all …]
|
| /third_party/python/Python/clinic/ |
| D | context.c.h | 7 "--\n" 45 "--\n" 49 "The result is returned as a list of 2-tuples (variable, value)."); 64 "keys($self, /)\n" 65 "--\n" 70 {"keys", (PyCFunction)_contextvars_Context_keys, METH_NOARGS, _contextvars_Context_keys__doc__}, 83 "--\n" 101 "--\n" 119 "--\n" 157 "--\n" [all …]
|
| /third_party/grpc/tools/dockerfile/distribtest/csharp_stretch_x64/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 RUN apt-get update && apt-get install -y apt-transport-https dirmngr gnupg ca-certificates && apt-g… 19 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19… 20 …echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | tee /etc/apt/source… 22 RUN apt-get update && apt-get install -y \ 23 mono-devel \ 25 && apt-get clean 27 RUN apt-get update && apt-get install -y curl && apt-get clean 31 RUN curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSI… 32 && mkdir -p /usr/share/dotnet \ [all …]
|
| /third_party/grpc/tools/dockerfile/distribtest/csharp_ubuntu1604_x64/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 RUN apt-get update && apt-get install -y apt-transport-https && apt-get clean 19 RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19… 20 … echo "deb https://download.mono-project.com/repo/ubuntu stable-xenial main" | tee /etc/apt/source… 22 RUN apt-get update && apt-get install -y \ 23 mono-devel \ 25 && apt-get clean 27 RUN apt-get update && apt-get install -y curl && apt-get clean 31 RUN curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/$DOTNET_SDK_VERSI… 32 && mkdir -p /usr/share/dotnet \ [all …]
|
| /third_party/python/Lib/idlelib/idle_test/ |
| D | test_config.py | 26 userkeys = testcfg['keys'] = config.IdleUserConfParser('') 193 config_path = os.path.join(idle_dir, '../config-%s.def' % ctype) 210 Both default and user config used the same config-*.def 276 # Check keys are equal 277 self.assertCountEqual(conf.defaultCfg.keys(), conf.config_types) 278 self.assertCountEqual(conf.userCfg.keys(), conf.config_types) 289 os.path.join(idle_dir, f'config-{cfg_type}.def')) 292 os.path.join(conf.userdir or '#', f'config-{cfg_type}.cfg')) 346 'Keys', 'History', 'HelpFiles']) 350 'Keys', 'History', 'HelpFiles']) [all …]
|
| /third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
| D | custom_paint.dart | 2 // Use of this source code is governed by a BSD-style license that can be 78 /// center: const Alignment(0.7, -0.6), 98 /// rect = const Alignment(0.8, -0.9).inscribe(Size(width, width), rect); 122 /// {@end-tool} 169 /// [Canvas.save]/[Canvas.saveLayer] and [Canvas.restore], otherwise all 307 /// keys. 385 /// This painter, if non-null, is called to paint behind the children. 410 /// This painter, if non-null, is called to paint in front of the children. 535 // such that restore() fails if it would take the lock count 541 '${debugNewCanvasSaveCount - debugPreviousCanvasSaveCount} more ' [all …]
|
| /third_party/python/Tools/c-analyzer/c_common/ |
| D | scriptutil.py | 43 module = module[:-9] 44 return f'{sys.executable} -m {module}' 58 # This will be None if -m wasn't used.. 133 # XXX Handle subtraction (leading "-"). 180 # XXX Fail on non-empty, non-callable procs? 192 parser.add_argument('-q', '--quiet', action='count', default=0) 193 parser.add_argument('-v', '--verbose', action='count', default=0) 200 ns[key] = max(0, VERBOSITY + ns.pop('verbose') - ns.pop('quiet')) 206 parser.add_argument('--traceback', '--tb', action='store_true', 208 parser.add_argument('--no-traceback', '--no-tb', dest='traceback', [all …]
|
| /third_party/cef/tools/ |
| D | patch_updater.py | 2 # reserved. Use of this source code is governed by a BSD-style license that 21 sys.stdout.write('--> ' + message + "\n") 26 sys.stdout.write('-' * 80 + "\n") 39 with open(file, 'r', encoding='utf-8') as fp: 55 # Parse command-line options. 77 '--resave', 83 '--reapply', 89 '--revert', 95 '--backup', 99 help='backup patched files. Used in combination with --revert.') [all …]
|
| /third_party/cef/libcef_dll/ctocpp/ |
| D | v8value_ctocpp.cc | 2 // reserved. Use of this source code is governed by a BSD-style license that 5 // --------------------------------------------------------------------------- 25 // STATIC METHODS - Body may be edited by hand. 27 NO_SANITIZE("cfi-icall") CefRefPtr<CefV8Value> CefV8Value::CreateUndefined() { in CreateUndefined() 28 // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING in CreateUndefined() 37 NO_SANITIZE("cfi-icall") CefRefPtr<CefV8Value> CefV8Value::CreateNull() { in CreateNull() 38 // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING in CreateNull() 47 NO_SANITIZE("cfi-icall") 49 // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING in CreateBool() 58 NO_SANITIZE("cfi-icall") [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
| D | config.dart | 2 // Use of this source code is governed by a BSD-style license that can be 23 argParser.addFlag('clear-ios-signing-cert', 26 argParser.addOption('android-sdk', help: 'The Android SDK directory.'); 27 argParser.addOption('android-studio-dir', help: 'The Android Studio install directory.'); 28 … argParser.addOption('build-dir', help: 'The relative path to override a projects build directory', 45 'clear-features', 46 help: 'Remove all configured features and restore them to the default values.', 78 String values = config.keys 107 if (argResults['clear-features']) { 122 if (argResults.wasParsed('android-sdk')) [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/Device/ |
| D | Memset.hpp | 7 // http://www.apache.org/licenses/LICENSE-2.0 22 // "‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘T’; 23 // use assignment or value-initialization instead [-Werror=class-memaccess]" 27 # pragma GCC diagnostic ignored "-Wclass-memaccess" 33 // It is useful as the *first* base class of map keys which may contain padding 59 // due to having a user-defined copy constructor and copy assignment operator. Delete 82 // Restore -Wclass-memaccess
|
| /third_party/ejdb/src/tests/ |
| D | yarn.lock | 5 "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": 7 …resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49… 8 …integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7… 14 …resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.2.tgz#2f4852d04131a5e17ea4… 15 …integrity sha512-WthSArvAjYLz4TcbKOi88me+KmDJdKSlfwwN8CnUYn9jBkzhq0ZEPuBfkAWIvjJ3AdEV1Cf/+eSQTnp3I… 20 source-map "^0.5.0" 22 "@babel/helper-function-name@^7.7.0": 24 …resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.0.tg… 25 …integrity sha512-tDsJgMUAP00Ugv8O2aGEua5I2apkaQO7lBGUq1ocwN3G23JE5Dcq0uh3GvFTChPa4b40AWiAsLvCZOA2r… 27 "@babel/helper-get-function-arity" "^7.7.0" [all …]
|