Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 440 for persists (0.18 sec)

  1. .github/workflows/maven.yml

              persist-credentials: false
    
          - name: Set up JDK
            uses: actions/setup-java@v4
            with:
              java-version: ${{ matrix.java }}
              distribution: 'temurin'
    #          cache: 'maven' - don't use cache for integration tests
    
          - uses: actions/checkout@v4
            with:
              path: maven/
              persist-credentials: false
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * "permits / time", thus "1 / rate = time / permits". Thus, "1/rate" (time / permits) times
       * "permits" gives time, i.e., integrals on this function (which is what storedPermitsToWaitTime()
       * computes) correspond to minimum intervals between subsequent requests, for the specified number
       * of requested permits.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. releasenotes/notes/workload-entry-service-select.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
     - |
       **Added** `PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES` feature back to Istio which was removed in 1.14.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 01 14:32:40 UTC 2022
    - 265 bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue50372.go

            for range s {}
            for i = range s {}
            for i, j /* ERRORx `range over .* permits only one iteration variable` */ = range s {}
            for i, j, k /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
            for i, j, k, l /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * "permits / time", thus "1 / rate = time / permits". Thus, "1/rate" (time / permits) times
       * "permits" gives time, i.e., integrals on this function (which is what storedPermitsToWaitTime()
       * computes) correspond to minimum intervals between subsequent requests, for the specified number
       * of requested permits.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/ProjectScriptTarget.java

                runnable.run();
            }
        }
    
        @Override
        public Permits getPluginsBlockPermits() {
            VersionCatalogsExtension versionCatalogs = target.getExtensions().findByType(VersionCatalogsExtension.class);
            if (versionCatalogs != null) {
                return new Permits(versionCatalogs.getCatalogNames());
            }
            return Permits.none();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 09 11:18:20 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/admission/exclusion/resources.go

    // include is the list of resources that the expression-based admission controllers
    // should intercept.
    // The version is omitted, all versions of the same GroupResource are treated the same.
    // If a resource is transient, i.e., not persisted in the storage, the resource must be
    // in either include or excluded list.
    var included = []schema.GroupResource{
    	{Group: "", Resource: "bindings"},
    	{Group: "", Resource: "pods/attach"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. releasenotes/notes/45415-overlapping-wildcards.yaml

          regardless of whether or not it was the most specific host match. Now, the most specific host match will take precedence. To persist the old behavior,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 09 14:22:50 UTC 2023
    - 786 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/ScriptTarget.java

         * @param deferrable true when the action can be deferred
         */
        void addConfiguration(Runnable runnable, boolean deferrable);
    
        default Permits getPluginsBlockPermits() {
            return Permits.none();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 09 11:18:20 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleRepositoryCacheProvider.java

            this.caches = caches;
            this.inMemoryCaches = inMemoryCaches;
        }
    
        /**
         * Returns caches which will also be persisted to disk. They will also have an in-memory
         * front-end, but eventually all results are persisted.
         */
        public ModuleRepositoryCaches getPersistentCaches() {
            return caches;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top