| /external/bazelbuild-rules_python/.github/workflows/ |
| D | stale.yml | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 # See https://github.com/marketplace/actions/close-stale-issues 17 name: Mark stale issues and pull requests 22 - cron: "45 22 * * *" 25 stale: 26 runs-on: ubuntu-latest 29 - uses: actions/stale@v3 31 repo-token: ${{ secrets.GITHUB_TOKEN }} 36 # The number of days old an issue can be before marking it stale. 37 days-before-stale: 180 [all …]
|
| /external/python/cpython3/.github/workflows/ |
| D | stale.yml | 1 name: Mark stale pull requests 5 - cron: "0 0 * * *" 8 pull-requests: write 11 stale: 14 runs-on: ubuntu-latest 15 timeout-minutes: 10 18 - name: "Check PRs" 19 uses: actions/stale@v5 21 repo-token: ${{ secrets.GITHUB_TOKEN }} 22 stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.' [all …]
|
| /external/flatbuffers/.github/workflows/ |
| D | stale.yml | 1 name: Mark stale issues and pull requests 2 permissions: read-all 6 - cron: "30 20 * * *" 9 stale: 11 runs-on: ubuntu-latest 14 - uses: actions/stale@v4.0.0 16 repo-token: ${{ secrets.GITHUB_TOKEN }} 17 …stale-pr-message: 'This pull request is stale because it has been open 6 months with no activity. … 18 …stale-issue-message: 'This issue is stale because it has been open 6 months with no activity. Plea… 19 days-before-stale: 182 # 6 months [all …]
|
| /external/accompanist/.github/workflows/ |
| D | issues-stale.yml | 1 name: 'Close stale issues and PRs' 4 - cron: '15 3 * * *' 7 stale: 8 runs-on: ubuntu-latest 10 - uses: actions/stale@v3 12 …stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remov… 13 days-before-stale: 45 14 days-before-close: 5 15 exempt-all-pr-milestones: true 16 exempt-issue-labels: 'waiting for info,waiting on dependency'
|
| /external/aws-sdk-java-v2/.github/workflows/ |
| D | stale-issue.yml | 1 name: "Close stale issues" 6 - cron: "0 0/3 * * *" 10 name: Stale issue job 11 runs-on: ubuntu-latest 14 pull-requests: write 16 - uses: aws-actions/stale-issue-cleanup@v4 20 ancient-issue-message: This is a very old issue that is probably not getting as much 24 stale-issue-message: It looks like this issue has not been active for more than five days. 28 stale-pr-message: It looks like this PR has not been active for more than five days. In 34 stale-issue-label: closing-soon [all …]
|
| /external/grpc-grpc/.github/ |
| D | stale.yml | 1 # Configuration for probot-stale - https://github.com/probot/stale 3 # Number of days of inactivity before an Issue or Pull Request becomes stale 6 # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7 … to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 10 # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disab… 13 # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 15 - "disposition/never stale" 16 - "kind/bug" 27 # Label to use when marking as stale 28 staleLabel: "disposition/stale" [all …]
|
| /external/rust/crates/grpcio-sys/grpc/.github/ |
| D | stale.yml | 1 # Configuration for probot-stale - https://github.com/probot/stale 3 # Number of days of inactivity before an Issue or Pull Request becomes stale 6 # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7 … to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 10 # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disab… 13 # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 15 - "disposition/never stale" 16 - "kind/bug" 27 # Label to use when marking as stale 28 staleLabel: "disposition/stale" [all …]
|
| /external/aws-crt-java/.github/workflows/ |
| D | stale_issue.yml | 1 name: "Close stale issues" 6 - cron: "*/60 * * * *" 10 runs-on: ubuntu-latest 11 name: Stale issue job 14 pull-requests: write 16 - uses: aws-actions/stale-issue-cleanup@v3 20 …ancient-issue-message: Greetings! Sorry to say but this is a very old issue that is probably not g… 21 …stale-issue-message: Greetings! It looks like this issue hasn’t been active in longer than a week.… 22 …stale-pr-message: Greetings! It looks like this PR hasn’t been active in longer than a week, add a… 25 stale-issue-label: closing-soon [all …]
|
| /external/curl/.github/ |
| D | stale.yml | 3 # SPDX-License-Identifier: curl 5 # Number of days of inactivity before an issue becomes stale 7 # Number of days of inactivity before a stale issue is closed 9 # Issues with these labels will never be considered stale 11 - pinned 12 - security 13 # Label to use when marking an issue as stale 14 staleLabel: stale 15 # Comment to post when marking an issue as stale. Set to `false` to disable 17 This issue has been automatically marked as stale because it has not had [all …]
|
| /external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/ |
| D | MddGarbageCollectionWithAndroidSharingIntegrationTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 20 import static java.util.concurrent.TimeUnit.DAYS; 60 import org.junit.Before; 80 private static final String FILE_GROUP_TO_SHARE_1 = "test-group-1"; 81 private static final String FILE_ID_1 = "test-file-to-share-1"; 109 @Before 140 () -> in setUp() 151 MddTestUtil.runShellCmd("cmd blob_store clear-all-sessions"); in tearDown() 152 MddTestUtil.runShellCmd("cmd blob_store clear-all-blobs"); in tearDown() 203 // Download file group with stale lifetime 0. in deletesStaleGroups_staleLifetimeZero() [all …]
|
| /external/volley/core/src/test/java/com/android/volley/toolbox/ |
| D | HttpHeaderParserTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 35 import org.junit.Before; 51 @Before 101 headers.put("Last-Modified", rfc1123Date(now - ONE_DAY_MILLIS)); in parseCacheHeaders_normalExpire() 109 assertEqualsWithin(entry.lastModified, (now - ONE_DAY_MILLIS), ONE_MINUTE_MILLIS); in parseCacheHeaders_normalExpire() 118 headers.put("Expires", rfc1123Date(now - ONE_HOUR_MILLIS)); in parseCacheHeaders_expiresInPast() 149 headers.put("Cache-Control", "public, max-age=86400"); in parseCacheHeaders_cacheControlOverridesExpires() 165 // - max-age (entry.softTtl) indicates that the asset is fresh for 1 day in testParseCacheHeaders_staleWhileRevalidate() 166 // - stale-while-revalidate (entry.ttl) indicates that the asset may in testParseCacheHeaders_staleWhileRevalidate() 167 // continue to be served stale for up to additional 7 days in testParseCacheHeaders_staleWhileRevalidate() [all …]
|
| /external/cronet/testing/unexpected_passes_common/ |
| D | argument_parsing.py | 2 # Use of this source code is governed by a BSD-style license that can be 4 """Common argument parsing-related code for unexpected pass finders.""" 13 def AddCommonArguments(parser: argparse.ArgumentParser) -> None: 19 parser.add_argument('--project', 23 '"chrome-luci-data.chromium.gpu_ci_test_results".') 24 parser.add_argument('--num-samples', 28 parser.add_argument('--output-format', 35 parser.add_argument('--remove-stale-expectations', 39 'determined to be stale from the expectation file.') 40 parser.add_argument('--narrow-semi-stale-expectation-scope', [all …]
|
| D | expectations.py | 2 # Use of this source code is governed by a BSD-style license that can be 26 FINDER_COMMENT_SUFFIX_GENERAL = '-general' 27 FINDER_COMMENT_SUFFIX_STALE = '-stale' 28 FINDER_COMMENT_SUFFIX_UNUSED = '-unused' 29 FINDER_COMMENT_SUFFIX_NARROWING = '-narrowing' 31 FINDER_GROUP_COMMENT_START = 'finder:group-start' 32 FINDER_GROUP_COMMENT_END = 'finder:group-end' 99 r'^[\w\s]+\(.+(?P<date>\d\d\d\d-\d\d-\d\d)[^\)]+\)(?P<content>.*)$', 129 # pylint: disable=useless-object-inheritance 134 def GetInstance() -> 'Expectations': [all …]
|
| /external/googleapis/google/firestore/admin/v1/ |
| D | database.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 42 // See https://cloud.google.com/datastore/docs/firestore-or-datastore for 87 // 7 days: 90 // * Reads against 1-minute snapshots beyond 1 hour and within 7 days 135 // Output only. The system-generated UUID4 for this Database. 139 // created before 2016 do not populate create_time. 154 // See https://cloud.google.com/datastore/docs/firestore-or-datastore for 169 // If the PITR feature is enabled, the retention period is 7 days. Otherwise, 176 // is populated with `now - version_retention_period`. 178 // This value is continuously updated, and becomes stale the moment it is [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | compute_v1.regionBackendServices.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 …]
|
| D | compute_v1.backendServices.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 …]
|
| D | compute_beta.regionBackendServices.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 …]
|
| D | compute_beta.backendServices.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/rust/crates/miette/ |
| D | CONTRIBUTING.md | 7 * [Request Support](#request-support) 8 * [Report an Error or Bug](#report-an-error-or-bug) 9 * [Request a Feature](#request-a-feature) 11 * [Project Setup](#project-setup) 12 * [Contribute Documentation](#contribute-documentation) 13 * [Contribute Code](#contribute-code) 15 * [Provide Support on Issues](#provide-support-on-issues) 16 * [Label Issues](#label-issues) 17 * [Clean Up Issues and PRs](#clean-up-issues-and-prs) 18 * [Review Pull Requests](#review-pull-requests) [all …]
|
| /external/e2fsprogs/misc/ |
| D | mke2fs.conf.5.in | 1 .\" -*- nroff -*- 7 mke2fs.conf \- Configuration file for mke2fs 18 file uses an INI-style format. Stanzas, or top-level sections, are 23 An example of the INI-style format used by this configuration file 81 stanza, or by a command-line option provided by the user. 131 .B \-t 135 .BI mkfs. fs-type\fR. 141 if a journal was requested via a command-line option, or 154 In addition, any tags that can be specified in a per-file system tags 164 specify one on the command line, and the file system-type [all …]
|
| /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/ |
| D | ResponseCacheTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 75 import org.junit.Before; 103 @Before public void setUp() throws Exception { in setUp() 126 * http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.4 130 // http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html in responseCachingByResponseCode() 185 .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS)) in assertCached() 189 .addHeader("WWW-Authenticate: challenge"); in assertCached() 191 mockResponse.addHeader("Proxy-Authenticate: Basic realm=\"protected area\""); in assertCached() 193 mockResponse.addHeader("WWW-Authenticate: Basic realm=\"protected area\""); in assertCached() 232 .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS)) in testResponseCaching() [all …]
|
| /external/googleapis/google/cloud/dialogflow/cx/v3beta1/ |
| D | security_settings.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 49 "https://www.googleapis.com/auth/cloud-platform," 64 // The returned settings may be stale by up to 1 minute. 238 // owned by the user - not Dialogflow. 250 // G.711 mu-law PCM with 8kHz sample rate. 271 // Note that this only redacts end-user audio data; 281 // [Insights](https://cloud.google.com/contact-center/insights/docs). 297 // Required. The human-readable name of the security settings, unique within 314 // `service-PROJECT_NUMBER@gcp-sa-dialogflow.iam.gserviceaccount.com`) 331 // template to define de-identification configuration for the content. [all …]
|
| /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
| D | CacheTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 56 import org.junit.Before; 85 @Before public void setUp() throws Exception { in setUp() 100 * http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.4 104 // http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html in responseCachingByResponseCode() 159 .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS)) in assertCached() 163 .addHeader("WWW-Authenticate: challenge"); in assertCached() 165 mockResponse.addHeader("Proxy-Authenticate: Basic realm=\"protected area\""); in assertCached() 167 mockResponse.addHeader("WWW-Authenticate: Basic realm=\"protected area\""); in assertCached() 212 .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS)) in testResponseCaching() [all …]
|
| /external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/internal/ |
| D | ExpirationHandlerTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 62 import org.junit.Before; 101 private static final String TEST_GROUP_1 = "test-group-1"; 104 private static final String TEST_GROUP_2 = "test-group-2"; 152 …ndroid.libraries.mobiledatadownload.internal/files/datadownload/shared/links/public/test-group-1"); 155 …s.mobiledatadownload.internal/files/datadownload/shared/links/public/test-group-1/test-group-1_0"); 159 …ndroid.libraries.mobiledatadownload.internal/files/datadownload/shared/links/public/test-group-2"); 162 …s.mobiledatadownload.internal/files/datadownload/shared/links/public/test-group-2/test-group-2_0"); 168 @Before 213 .thenAnswer(invocation -> Futures.immediateFuture(fileGroupsMetadataStaleGroups.get())); in setUp() [all …]
|
| /external/cronet/net/dns/ |
| D | host_cache_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 67 return (foobarx_com[6] - '0') % 2 == 1; in FoobarIndexIsOdd() 122 EXPECT_TRUE(cache.Lookup(key1, now)->second.error() == entry.error()); in TEST() 185 // Merge in non-empty metadata. in TEST() 208 // Merge in non-empty metadata. in TEST() 316 EXPECT_EQ(kNetworkAnonymizationKey1, result->first.network_anonymization_key); in TEST() 317 EXPECT_EQ(OK, result->second.error()); in TEST() 325 EXPECT_EQ(kNetworkAnonymizationKey1, result->first.network_anonymization_key); in TEST() 326 EXPECT_EQ(OK, result->second.error()); in TEST() 329 EXPECT_EQ(kNetworkAnonymizationKey2, result->first.network_anonymization_key); in TEST() [all …]
|