Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 629 for leastOf (0.19 sec)

  1. android/guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

         * anything interesting under most environments. Still, we can run it (except for Android, at
         * least old versions), so we mostly do. This is useful because we don't actually run our CI on
         * Windows under Java 8, at least as of this writing.
         *
         * Under Windows in particular, we want to test that:
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * If the module-path contains at least one filename-based auto-module, prepares a warning message.
         * The module path is the collection of dependencies associated to {@link JavaPathType#MODULES}.
         * It is caller's responsibility to send the message to a logger.
         *
         * @return warning message if at least one filename-based auto-module was found
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    					"type": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/MapMaker.java

        return this;
      }
    
      @CanIgnoreReturnValue
      public MapMaker concurrencyLevel(int concurrencyLevel) {
        checkArgument(
            concurrencyLevel >= 1, "concurrency level (%s) must be at least 1", concurrencyLevel);
        // GWT technically only supports concurrencyLevel == 1, but we silently
        // ignore other positive values.
        return this;
      }
    
      public <K, V> ConcurrentMap<K, V> makeMap() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/util/async/bounded_frequency_runner.go

    //
    // The function will be run at least once per maxInterval. For example, this can
    // force periodic refreshes of state in the absence of anyone calling Run.
    //
    // Examples:
    //
    // NewBoundedFrequencyRunner("name", fn, time.Second, 5*time.Second, 1)
    // - fn will have at least 1 second between runs
    // - fn will have no more than 5 seconds between runs
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  6. pkg/apis/policy/types.go

    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
    type PodDisruptionBudgetSpec struct {
    	// An eviction is allowed if at least "minAvailable" pods selected by
    	// "selector" will still be available after the eviction, i.e. even in the
    	// absence of the evicted pod.  So for example you can prevent all voluntary
    	// evictions by specifying "100%".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/default-match-http.yaml

    ---
    # This HTTPRoute demonstrates patch match defaulting. If no path match is
    # specified, CRD defaults adds a default PathPrefix match on the path "/". This
    # matches every HTTP request and ensures that route rules always have at
    # least one valid match.
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: default-match-route
      labels:
        app: default-match
    spec:
      parentRefs:
      - name: default-match-gw
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/InvalidPublicationChecker.java

        }
    
        public void registerVariant(String name, AttributeContainer attributes, Set<? extends Capability> capabilities) {
            if (attributes.isEmpty()) {
                failWith("Variant '" + name + "' must declare at least one attribute.");
            }
            if (variants.containsKey(name)) {
                failWith("It is invalid to have multiple variants with the same name ('" + name + "')");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/strings/builder.go

    }
    
    // grow copies the buffer to a new, larger buffer so that there are at least n
    // bytes of capacity beyond len(b.buf).
    func (b *Builder) grow(n int) {
    	buf := bytealg.MakeNoZero(2*cap(b.buf) + n)[:len(b.buf)]
    	copy(buf, b.buf)
    	b.buf = buf
    }
    
    // Grow grows b's capacity, if necessary, to guarantee space for
    // another n bytes. After Grow(n), at least n bytes can be written to b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         *
         * <p>If no artifact is added to a dependency, an implicit default artifact is used. This default artifact has the
         * same name as the module and its type and extension is {@code jar}. If at least one artifact is explicitly added,
         * the implicit default artifact won't be used any longer.</p>
         *
         * @return this
         */
        ModuleDependency addArtifact(DependencyArtifact artifact);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top