Searched +full:timeout +full:- +full:minutes (Results  1 – 25 of 419) sorted by relevance
12345678910>>...17
| /external/rust/crates/paste/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings17     runs-on: ubuntu-latest
 19       fail-fast: false
 22     timeout-minutes: 45
 24       - uses: actions/checkout@v3
 25       - uses: dtolnay/rust-toolchain@master
 28       - run: cargo test
 32     runs-on: ubuntu-latest
 33     timeout-minutes: 45
 35       - uses: actions/checkout@v3
 [all …]
 
 | 
| /external/rust/crates/quote/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings17     runs-on: ubuntu-latest
 19       fail-fast: false
 22     timeout-minutes: 45
 24       - uses: actions/checkout@v3
 25       - uses: dtolnay/rust-toolchain@master
 28           components: rust-src
 29       - run: cargo test
 33     runs-on: ubuntu-latest
 34     timeout-minutes: 45
 [all …]
 
 | 
| /external/rust/crates/rustversion/.github/workflows/ | 
| D | ci.yml | 13   RUSTFLAGS: -Dwarnings23     runs-on: ubuntu-latest
 25       fail-fast: false
 28     timeout-minutes: 45
 30       - uses: actions/checkout@v3
 31       - uses: dtolnay/rust-toolchain@master
 34       - name: Enable type layout randomization
 35         run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
 37       - run: cargo test
 43     runs-on: ubuntu-latest
 [all …]
 
 | 
| /external/rust/crates/ryu/.github/workflows/ | 
| D | ci.yml | 13   RUSTFLAGS: -Dwarnings23     runs-on: ubuntu-latest
 25       fail-fast: false
 28     timeout-minutes: 45
 30       - uses: actions/checkout@v3
 31       - uses: dtolnay/rust-toolchain@master
 34       - name: Enable type layout randomization
 35         run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
 37       - run: cargo test
 38       - run: cargo test --features small
 [all …]
 
 | 
| /external/rust/crates/anyhow/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings22     runs-on: ubuntu-latest
 24       fail-fast: false
 27     timeout-minutes: 45
 29       - uses: actions/checkout@v3
 30       - uses: dtolnay/rust-toolchain@master
 33           components: rust-src
 34       - run: cargo test
 35       - run: cargo check --no-default-features
 36       - run: cargo check --features backtrace
 [all …]
 
 | 
| /external/rust/crates/proc-macro2/.github/workflows/ | 
| D | ci.yml | 13   RUSTFLAGS: -Dwarnings23     runs-on: ubuntu-latest
 25       fail-fast: false
 28     timeout-minutes: 45
 30       - uses: actions/checkout@v3
 31       - uses: dtolnay/rust-toolchain@master
 34       - run: cargo test
 35       - run: cargo test --no-default-features
 36       - run: cargo test --features span-locations
 37       - name: RUSTFLAGS='--cfg procmacro2_semver_exempt' cargo test
 [all …]
 
 | 
| /external/rust/crates/semver/.github/workflows/ | 
| D | ci.yml | 13   RUSTFLAGS: -Dwarnings23     runs-on: ubuntu-latest
 25       fail-fast: false
 28     timeout-minutes: 45
 30       - uses: actions/checkout@v3
 31       - uses: dtolnay/rust-toolchain@master
 34       - name: Enable type layout randomization
 35         run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
 37       - run: cargo test
 38       - run: cargo check --no-default-features
 [all …]
 
 | 
| /external/rust/crates/thiserror/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings17     runs-on: ubuntu-latest
 19       fail-fast: false
 23           - rust: nightly
 24             rustflags: --cfg thiserror_nightly_testing
 25     timeout-minutes: 45
 27       - uses: actions/checkout@v3
 28       - uses: dtolnay/rust-toolchain@master
 31           components: rust-src
 32       - run: cargo test --all
 [all …]
 
 | 
| /external/rust/crates/async-trait/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings22     runs-on: ubuntu-latest
 24       fail-fast: false
 28           - rust: nightly
 29             rustflags: --cfg async_trait_nightly_testing
 30     timeout-minutes: 45
 32       - uses: actions/checkout@v3
 33       - uses: dtolnay/rust-toolchain@master
 36       - run: cargo test
 44     runs-on: ubuntu-latest
 [all …]
 
 | 
| /external/rust/crates/serde_json/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings17     runs-on: ${{matrix.os}}-latest
 19       fail-fast: false
 22     timeout-minutes: 45
 24       - uses: actions/checkout@v3
 25       - uses: dtolnay/rust-toolchain@nightly
 26       - run: cargo test
 27       - run: cargo test --features preserve_order --tests -- --skip ui --exact
 28       - run: cargo test --features float_roundtrip --tests -- --skip ui --exact
 29       - run: cargo test --features arbitrary_precision --tests -- --skip ui --exact
 [all …]
 
 | 
| /external/XNNPACK/.github/workflows/ | 
| D | build.yml | 4   group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}5   cancel-in-progress: true
 7   cmake-linux-local:
 8     runs-on: ubuntu-latest
 9     timeout-minutes: 40
 11       - uses: actions/checkout@v2
 12       - name: Update apt
 14       - name: Install ninja
 15         run: sudo apt install ninja-build
 16       - name: Configure and build
 [all …]
 
 | 
| /external/rust/crates/itoa/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings17     runs-on: ubuntu-latest
 19       fail-fast: false
 22     timeout-minutes: 45
 24       - uses: actions/checkout@v3
 25       - uses: dtolnay/rust-toolchain@master
 28       - run: cargo build
 29       - run: cargo test
 30       - run: cargo test --release
 31       - run: cargo build --no-default-features
 [all …]
 
 | 
| /external/rust/crates/no-panic/.github/workflows/ | 
| D | ci.yml | 13   RUSTFLAGS: -Dwarnings23     runs-on: ubuntu-latest
 25       fail-fast: false
 28     timeout-minutes: 45
 30       - uses: actions/checkout@v3
 31       - uses: dtolnay/rust-toolchain@master
 34       - name: Enable deny(non_exhaustive_omitted_patterns)
 35         run: echo RUSTFLAGS=$(RUSTFLAGS)\ --cfg=exhaustive >> $GITHUB_ENV
 37       - name: Enable type layout randomization
 38         run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
 [all …]
 
 | 
| /external/rust/cxx/.github/workflows/ | 
| D | ci.yml | 14     runs-on: ${{matrix.os || 'ubuntu'}}-latest16       fail-fast: false
 19           - rust: nightly
 20           - rust: beta
 21           - rust: stable
 22           - rust: 1.60.0
 23           - name: macOS
 26           - name: Windows (msvc)
 27             rust: nightly-x86_64-pc-windows-msvc
 32       RUSTFLAGS: --cfg deny_warnings -Dwarnings
 [all …]
 
 | 
| /external/autotest/client/site_tests/power_LoadTest/extension/ | 
| D | urls.js | 2 // Use of this source code is governed by a BSD-style license that can be10 var RADIO_AUDIO_URL = 'https://storage.googleapis.com/chromiumos-test-assets-public/power_LoadTest/…
 12 var PLAY_MUSIC_URL = 'https://play.google.com/music/listen?u=0#/wst/st/a2be2d85-0ac9-3a7a-b038-e221…
 25     duration: minutes(60),
 37     // Page cycle through popular external websites for 36 minutes
 41     duration: minutes(36),
 43     timeout: seconds(30),  property
 48     // After 36 minutes, actively read e-mail for 12 minutes
 51     start: minutes(36) + seconds(1),
 52     duration: minutes(12) - seconds(1),
 [all …]
 
 | 
| /external/rust/crates/unicode-ident/.github/workflows/ | 
| D | ci.yml | 13   RUSTFLAGS: -Dwarnings21     runs-on: ubuntu-latest
 23     timeout-minutes: 45
 25       - uses: actions/checkout@v3
 26       - uses: dtolnay/rust-toolchain@stable
 27       - id: ucd-generate
 28 …run: echo "version=$(grep 'ucd-generate [0-9]\+\.[0-9]\+\.[0-9]\+' tests/tables/tables.rs --only-m…
 29       - run: cargo install ucd-generate
 30       - run: curl -LO https://www.unicode.org/Public/zipped/latest/UCD.zip
 31       - run: unzip UCD.zip -d UCD
 [all …]
 
 | 
| /external/autotest/server/cros/dynamic_suite/ | 
| D | frontend_wrappers.py | 2 # Use of this source code is governed by a BSD-style license that can be36     @param timeout_min: The maximum amount of time (in minutes) to sleep.
 42     # => total_sleep = sleep*sum(r=0..max_retry-1, backoff^r)
 43     # => total_sleep = sleep( (1-backoff^max_retry) / (1-backoff) )
 44     # => max_retry*ln(backoff) = ln(1-(total_sleep/sleep)*(1-backoff))
 45     # => max_retry = ln(1-(total_sleep/sleep)*(1-backoff))/ln(backoff)
 47     numerator = math.log10(1 - (total_sleep / delay_sec) * (1 - backoff))
 55     Timeout for retries and delay between retries are configurable.
 60         @param timeout_min: timeout in minutes until giving up.
 61         @param delay_sec: pre-jittered delay between retries in seconds.
 [all …]
 
 | 
| /external/cpuinfo/.github/workflows/ | 
| D | build.yml | 6       - master7       - main
 10   group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
 11   cancel-in-progress: true
 13   cmake-linux-local:
 14     runs-on: ubuntu-latest
 15     timeout-minutes: 40
 17       - uses: actions/checkout@v2
 18       - name: Update apt
 20       - name: Install ninja
 [all …]
 
 | 
| /external/mesa3d/.gitlab-ci/ | 
| D | lava-tracie.yml.jinja2 | 1 job_name: mesa-tracie-{{ gpu_version }} {{ pipeline_info }}7     minutes: 40
 9    minutes: 10
 11     power-off:
 19   - {{ tag }}
 23 - deploy:
 24     timeout:
 25       minutes: 10
 33       url: {{ base_artifacts_url }}/lava-rootfs.tgz
 40 - boot:
 [all …]
 
 | 
| D | lava-deqp.yml.jinja2 | 1 job_name: mesa-deqp-{{ deqp_version }}-{{ gpu_version }} {{ pipeline_info }}7     minutes: 40
 9    minutes: 10
 11     power-off:
 19   - {{ tag }}
 23 - deploy:
 24     timeout:
 25       minutes: 10
 33       url: {{ base_artifacts_url }}/lava-rootfs.tgz
 40 - boot:
 [all …]
 
 | 
| /external/rust/crates/enumn/.github/workflows/ | 
| D | ci.yml | 12   RUSTFLAGS: -Dwarnings17     runs-on: ubuntu-latest
 19       fail-fast: false
 22     timeout-minutes: 45
 24       - uses: actions/checkout@v3
 25       - uses: dtolnay/rust-toolchain@master
 28       - run: cargo test
 32     runs-on: ubuntu-latest
 34     timeout-minutes: 45
 36       - uses: actions/checkout@v3
 [all …]
 
 | 
| /external/autotest/client/site_tests/power_LoadTest/ | 
| D | control.email_1hour | 2 # Use of this source code is governed by a BSD-style license that can be24   - make sure that Ethernet cable is disconnected and WiFi is connected
 25   - disconnect power cable
 47 # timeout: time before loading a url times out for the cycle type (ms)
 58     duration: minutes(60),
 72     duration: minutes(60),
 73     delay: minutes(5),
 74     timeout: seconds(10),
 85     duration: minutes(60),
 86     delay: minutes(12),
 [all …]
 
 | 
| D | control.single_page | 2 # Use of this source code is governed by a BSD-style license that can be23   - make sure that Ethernet cable is disconnected and WiFi is connected
 24   - disconnect power cable
 46 # timeout: time before loading a url times out for the cycle type (ms)
 52 # instead of 3600 seconds. This is why duration is minutes(60) instead of
 53 # minutes(5) and delay is minutes(12) instead of minutes(1).
 61     duration: minutes(60),
 62     delay: minutes(12),
 63     timeout: seconds(10),
 
 | 
| /external/python/google-api-python-client/docs/dyn/ | 
| D | androidpublisher_v3.internalappsharingartifacts.html | 8   font-weight: inherit;9   font-style: inherit;
 10   font-size: 100%;
 11   font-family: inherit;
 12   vertical-align: baseline;
 16   font-size: 13px;
 21   font-size: 26px;
 22   margin-bottom: 1em;
 26   font-size: 24px;
 27   margin-bottom: 1em;
 [all …]
 
 | 
| /external/autotest/server/hosts/ | 
| D | moblab_host.py | 3 # Use of this source code is governed by a BSD-style license that can be38 SUBNET_DUT_SEARCH_RE = (r'(?P<ip>192.168.231.1[0-1][0-9]) : '
 39                         'xmt\/rcv\/%loss = [0-9]+\/[0-9]+\/0%')
 47 MOBLAB_SERVICES = ['moblab-scheduler-init',
 48                    'moblab-database-init',
 49                    'moblab-devserver-init',
 50                    'moblab-gsoffloader-init',
 51                    'moblab-gsoffloader_s-init']
 86         @param timeout_min: The timeout minuties for AFE services.
 102         # _repair_strategy, and now we're re-initializing it here.
 [all …]
 
 | 
        12345678910>>...17