Home
last modified time | relevance | path

Searched +full:fetch +full:- +full:depth (Results 1 – 25 of 273) sorted by relevance

1234567891011

/third_party/typescript_eslint/tools/
Dgenerate-contributors.ts1 // this script uses the github api to fetch a list of contributors
2 // https://developer.github.com/v3/repos/#list-contributors
6 import 'isomorphic-fetch';
13 'semantic-release-bot',
18 const contributorsApiUrl = `https://api.github.com/repos/typescript-eslint/typescript-eslint/contri…
42 const response = await fetch(`${contributorsApiUrl}&page=${page}`, {
62 - there wasn't 100 users in the page, or
63 - there wasn't 100 users with > threshold commits in the page.
65 In either case, it means that there's no need to fetch any more pages
74 // fetch all of the contributor info
[all …]
/third_party/typescript/.github/workflows/
Dsync-branch.yaml5 types: sync-branch
14 runs-on: ubuntu-latest
17 - name: Use node version 12.x
18 uses: actions/setup-node@v1
20 node-version: 12.x
21 - uses: actions/checkout@v2
24 fetch-depth: 0
25 # This does a test post-merge and only pushes the result if the test succeeds
27 # branch_name - the target branch
28 - run: |
[all …]
Dcodeql.yml1 name: "Code scanning - action"
7 - cron: '0 19 * * 0'
10 CodeQL-Build:
12 # CodeQL runs on ubuntu-latest and windows-latest
13 runs-on: ubuntu-latest
16 - name: Checkout repository
19 # We must fetch at least the immediate parents so that if this is
21 fetch-depth: 2
25 - run: git checkout HEAD^2
29 - name: Initialize CodeQL
[all …]
Dci.yml6 - master
7 - release-*
10 - master
11 - release-*
15 runs-on: ubuntu-latest
19 node-version: [10.x, 12.x, 14.x]
22 - uses: actions/checkout@v2
24 fetch-depth: 5
25 - name: Use node version ${{ matrix.node-version }}
26 uses: actions/setup-node@v1
[all …]
/third_party/python/PCbuild/
Dget_externals.bat3 rem Simple script to fetch source for external libraries
15 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts
16 if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts
17 if "%~1"=="--no-libffi" (set IncludeLibffi=false) & shift & goto CheckOpts
18 if "%~1"=="--tkinter-src" (set IncludeTkinterSrc=true) & shift & goto CheckOpts
19 if "%~1"=="--openssl-src" (set IncludeSSLSrc=true) & shift & goto CheckOpts
20 if "%~1"=="--libffi-src" (set IncludeLibffiSrc=true) & shift & goto CheckOpts
21 if "%~1"=="--python" (set PYTHON=%2) & shift & shift & goto CheckOpts
22 if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts
23 if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DTextureFunctionHLSL.cpp3 // Use of this source code is governed by a BSD-style license that can be
41 << "Offset)), 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
48 out << " " << texCoordOutName << " = clamp(texCoordInt, 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
56 out << " float coordWrapped = 1.0 - abs(frac(abs(" << texCoordOutName in OutputIntTexCoordWrap()
57 << "Offset) * 0.5) * 2.0 - 1.0);\n"; in OutputIntTexCoordWrap()
75 // Convert from normalized floating-point to integer in OutputIntTexCoordWraps()
101 *texCoordZ = ImmutableString("int(max(0, min(layers - 1, floor(0.5 + t.z))))"); in OutputIntTexCoordWraps()
108 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "offset.z", "tiz"); in OutputIntTexCoordWraps()
112 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "0", "tiz"); in OutputIntTexCoordWraps()
129 textureFunction.method == TextureFunctionHLSL::TextureFunction::FETCH) in OutputHLSL4SampleFunctionPrefix()
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DTextureFunctionHLSL.cpp3 // Use of this source code is governed by a BSD-style license that can be
41 << "Offset)), 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
48 out << " " << texCoordOutName << " = clamp(texCoordInt, 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
56 out << " float coordWrapped = 1.0 - abs(frac(abs(" << texCoordOutName in OutputIntTexCoordWrap()
57 << "Offset) * 0.5) * 2.0 - 1.0);\n"; in OutputIntTexCoordWrap()
75 // Convert from normalized floating-point to integer in OutputIntTexCoordWraps()
101 *texCoordZ = ImmutableString("int(max(0, min(layers - 1, floor(0.5 + t.z))))"); in OutputIntTexCoordWraps()
108 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "offset.z", "tiz"); in OutputIntTexCoordWraps()
112 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "0", "tiz"); in OutputIntTexCoordWraps()
129 textureFunction.method == TextureFunctionHLSL::TextureFunction::FETCH) in OutputHLSL4SampleFunctionPrefix()
[all …]
/third_party/skia/docker/skia-wasm-release/
DDockerfile2 FROM gcr.io/skia-public/emsdk-base:prod as builder
4 RUN apt-get update && apt-get upgrade -y && apt-get install -y \
6 libfreetype6-dev
9 && git clone --depth 1 'https://chromium.googlesource.com/chromium/tools/depot_tools.git'
13 # Checkout Skia using fetch from depot_tools
14 RUN mkdir -p /tmp/skia \
16 && fetch skia
19 # https://skia-review.googlesource.com/c/buildbot/+/286537/5/docker/Dockerfile#46
26 RUN if [ -z "${HASH}" ] ; then echo "HASH must be specified as a --build-arg"; exit 1; fi
29 && git fetch \
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARM/
DARM_shader_framebuffer_fetch.txt16 Jan-Harald Fredriksen (jan-harald.fredriksen 'at' arm.com)
44 data as input. This permits use-cases such as programmable blending,
46 fixed-function blending.
73 New Built-in Variables
80 built-in varying variables include [...]" and add:
82 "These built-in varying variables include the fragment's position, eye z
83 coordinate, and front-facing flag, as well as the current color value in the
97 fixed-point color components. Undefined results are produced if a shader
100 that is not unsigned normalized fixed-point. No error is generated in this
105 "Per-sample fetch can be used to specify that reads of current values from
[all …]
/third_party/openGLES/extensions/ARM/
DARM_shader_framebuffer_fetch.txt16 Jan-Harald Fredriksen (jan-harald.fredriksen 'at' arm.com)
44 data as input. This permits use-cases such as programmable blending,
46 fixed-function blending.
73 New Built-in Variables
80 built-in varying variables include [...]" and add:
82 "These built-in varying variables include the fragment's position, eye z
83 coordinate, and front-facing flag, as well as the current color value in the
97 fixed-point color components. Undefined results are produced if a shader
100 that is not unsigned normalized fixed-point. No error is generated in this
105 "Per-sample fetch can be used to specify that reads of current values from
[all …]
/third_party/json/.github/workflows/
Dcodeql-analysis.yml1 name: "Code scanning - action"
10 - cron: '0 19 * * 1'
13 CodeQL-Build:
15 runs-on: ubuntu-latest
18 - name: Checkout repository
21 # We must fetch at least the immediate parents so that if this is
23 fetch-depth: 2
27 - run: git checkout HEAD^2
31 - name: Initialize CodeQL
32 uses: github/codeql-action/init@v1
[all …]
/third_party/openGLES/extensions/ARB/
DARB_texture_multisample.txt15 Copyright (c) 2009-2014 The Khronos Group Inc. Copyright terms at
20 Khronos-approved extension specifications are updated in response to
48 textures" - two-dimensional and two-dimensional array - as well as
49 mechanisms to fetch a specific sample from such a texture in a shader,
67 sizei width, sizei height, sizei depth,
138 ----------------------------------------- ------------
157 Additionally, this fetch may only be performed on a multisample
158 texture sampler. No other sample or fetch commands may be performed
187 for a one or two-dimensional, one- or two-dimensional array,
188 two-dimensional multisample, or two-dimensional multisample array
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_texture_multisample.txt15 Copyright (c) 2009-2014 The Khronos Group Inc. Copyright terms at
38 textures" - two-dimensional and two-dimensional array - as well as
39 mechanisms to fetch a specific sample from such a texture in a shader,
57 sizei width, sizei height, sizei depth,
128 ----------------------------------------- ------------
147 Additionally, this fetch may only be performed on a multisample
148 texture sampler. No other sample or fetch commands may be performed
177 for a one or two-dimensional, one- or two-dimensional array,
178 two-dimensional multisample, or two-dimensional multisample array
179 texture, and the maximum allowable height of a two-dimensional,
[all …]
/third_party/flutter/skia/third_party/externals/angle2/extensions/
DANGLE_texture_multisample.txt43 This extension provides support for a new type of texture -
44 two-dimensional multisample textures - as well as mechanisms to
58 * An API to query the texture's level-of-detail information for various
152 ----------------------------------------- ------------
170 of the texel fetch in the following cases is zero. If robust buffer
171 access is not enabled, the result of the texel fetch is undefined if
185 texture sampler. No other sample or fetch commands may be performed
202 location (x, y) is returned as two floating-point values in (val[0],
204 represent a location in pixel space at which depth and associated
227 The texture object name space, including the initial two- and
[all …]
/third_party/skia/third_party/externals/angle2/extensions/
DANGLE_texture_multisample.txt43 This extension provides support for a new type of texture -
44 two-dimensional multisample textures - as well as mechanisms to
58 * An API to query the texture's level-of-detail information for various
152 ----------------------------------------- ------------
170 of the texel fetch in the following cases is zero. If robust buffer
171 access is not enabled, the result of the texel fetch is undefined if
185 texture sampler. No other sample or fetch commands may be performed
202 location (x, y) is returned as two floating-point values in (val[0],
204 represent a location in pixel space at which depth and associated
227 The texture object name space, including the initial two- and
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/git/
Dgit.go7 // http://www.apache.org/licenses/LICENSE-2.0
73 // Commit calls 'git commit -m <msg> --author <author>'.
77 args = append(args, "-c", "user.name="+flags.Name)
80 args = append(args, "-c", "user.email="+flags.Email)
82 args = append(args, "commit", "-m", msg)
96 f, err := ioutil.TempFile("", "regres-cookies.txt")
108 args = append(args, "-c", "http.cookiefile="+f.Name())
114 // CheckoutRemoteBranch performs a git fetch and checkout of the given branch into path.
123 {"fetch", "origin", "--depth=1", branch},
135 // CheckoutRemoteCommit performs a git fetch and checkout of the given commit into path.
[all …]
/third_party/typescript_eslint/.github/workflows/
Dmanual-release.yml11 runs-on: ubuntu-latest
13 - uses: actions/checkout@v2
19 # We need to fetch all tags and branches
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)"
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_texture_multisample.txt43 This specification extends NV_gpu_program4 to support per-sample fetching
47 * The TXFMS sample fetch instruction.
69 sizei width, sizei height, sizei depth,
79 sizei width, sizei height, sizei depth,
91 sizei width, sizei height, sizei depth,
119 ---------------- --------------------- ----- ----- ------
127 ---------------- --------- ----- ----- ---
128 2DMS no - - - - -
129 ARRAY2DMS no - - - - -
135 a specified renderbuffer, two-dimensional multisample, or two-dimensional
[all …]
/third_party/openGLES/extensions/NV/
DNV_texture_multisample.txt43 This specification extends NV_gpu_program4 to support per-sample fetching
47 * The TXFMS sample fetch instruction.
69 sizei width, sizei height, sizei depth,
79 sizei width, sizei height, sizei depth,
91 sizei width, sizei height, sizei depth,
119 ---------------- --------------------- ----- ----- ------
127 ---------------- --------- ----- ----- ---
128 2DMS no - - - - -
129 ARRAY2DMS no - - - - -
135 a specified renderbuffer, two-dimensional multisample, or two-dimensional
[all …]
/third_party/node/deps/npm/lib/config/
Ddefaults.js12 var hasUnicode = require('has-unicode')
48 if (type.indexOf(url) !== -1) type = url
49 else if (type.indexOf(path) !== -1) type = path
82 else home = path.resolve(temp, 'npm-' + uidOrPid)
84 var cacheExtra = process.platform === 'win32' ? 'npm-cache' : '.npm'
95 // c:\node\node.exe --> prefix=c:\node\
98 // /usr/local/bin/node --> prefix=/usr/local
109 'allow-same-version': false,
110 'always-auth': false,
113 'audit-level': 'low',
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/QCOM/
DQCOM_shader_framebuffer_fetch_noncoherent.txt39 shaders to read existing framebuffer color or depth/stencil data as input.
42 per-primitive flushes of the pixel pipeline and may offer performance
68 Append the following new sub-section at the end of section 3.8.2, Shader
71 Framebuffer Fetch Coherency
79 coherent behavior is enabled by default, but an optional non-coherent
81 symbolic constant FRAMEBUFFER_FETCH_NONCOHERENT_QCOM. If the non-coherent
84 once. When non-coherent behavior is enabled, the results of framebuffer reads
100--------- ---- ----------- ------------- -------------- -------
101 FRAMEBUFFER_FETCH_NONCOHERENT_QCOM B GetBooleanv - enables relaxed
107 Version 1, 2017/01/06 - Initial draft.
[all …]
/third_party/openGLES/extensions/QCOM/
DQCOM_shader_framebuffer_fetch_noncoherent.txt39 shaders to read existing framebuffer color or depth/stencil data as input.
42 per-primitive flushes of the pixel pipeline and may offer performance
68 Append the following new sub-section at the end of section 3.8.2, Shader
71 Framebuffer Fetch Coherency
79 coherent behavior is enabled by default, but an optional non-coherent
81 symbolic constant FRAMEBUFFER_FETCH_NONCOHERENT_QCOM. If the non-coherent
84 once. When non-coherent behavior is enabled, the results of framebuffer reads
100--------- ---- ----------- ------------- -------------- -------
101 FRAMEBUFFER_FETCH_NONCOHERENT_QCOM B GetBooleanv - enables relaxed
107 Version 1, 2017/01/06 - Initial draft.
[all …]
/third_party/node/deps/npm/man/man1/
Dnpm-outdated.11 .TH "NPM\-OUTDATED" "1" "January 2022" "" ""
3 \fBnpm-outdated\fR \- Check for outdated packages
21 you're running \fBnpm outdated \-\-global\fP, or the package isn't included in
22 \fBpackage\.json\fP), then \fBwanted\fP shows the currently\-installed version\.
26 with a dist\-tag of \fBlatest\fP\|\. This may or may not be the maximum version of
27 the package, or the most\-recently published version of the package, depending
28 on how the package's developer manages the latest dist\-tag \fInpm\-dist\-tag\fR\|\.
31 \fBnpm outdated\fP defaults to a depth of 0, so unless you override that, you'll
32 always be seeing only top\-level dependencies that are outdated\.
34 \fBpackage type\fP (when using \fB\-\-long\fP / \fB\-l\fP) tells you whether this package is
[all …]
/third_party/node/deps/npm/docs/content/cli-commands/
Dnpm-outdated.md1 ---
2 section: cli-commands
3 title: npm-outdated
5 ---
7 # npm-outdated(1)
26 you're running `npm outdated --global`, or the package isn't included in
27 `package.json`), then `wanted` shows the currently-installed version.
30 with a dist-tag of `latest`. This may or may not be the maximum version of
31 the package, or the most-recently published version of the package, depending
32 on how the package's developer manages the latest [dist-tag](npm-dist-tag).
[all …]
/third_party/ffmpeg/libavcodec/
Dmsrledec.c19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
40 int line = avctx->height - 1; in msrle_decode_pal4()
43 while (line >= 0 && pixel_ptr <= avctx->width) { in msrle_decode_pal4()
47 avctx->width - pixel_ptr, line); in msrle_decode_pal4()
52 /* fetch the next byte to see how to handle escape code */ in msrle_decode_pal4()
56 line--; in msrle_decode_pal4()
66 line -= stream_byte; in msrle_decode_pal4()
72 if (pixel_ptr + 2*rle_code - odd_pixel > avctx->width || in msrle_decode_pal4()
80 if (pixel_ptr >= avctx->width) in msrle_decode_pal4()
83 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte >> 4; in msrle_decode_pal4()
[all …]

1234567891011