Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,143 for Maximum (0.11 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * will be ignored.
         *
         * @return the maximum granularity of the events to be logged
         */
        int getMaxGranularity();
    
        /**
         * Returns the maximum granularity of the events to be logged. Typically, 0 corresponds to the Gradle-generated test suite for the whole test run, 1 corresponds to the Gradle-generated test suite
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/BaseForkOptions.java

            this.memoryInitialSize = memoryInitialSize;
        }
    
        /**
         * Returns the maximum heap size for the compiler process.
         * Defaults to {@code null}, in which case the JVM's default will be used.
         */
        @Internal
        public String getMemoryMaximumSize() {
            return memoryMaximumSize;
        }
    
        /**
         * Sets the maximum heap size for the compiler process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         *
         * @return The maximum number of test classes to execute in a test process. Returns 0 when there is no maximum.
         */
        @Internal
        public long getForkEvery() {
            return getDebug() ? 0 : forkEvery;
        }
    
        /**
         * Sets the maximum number of test classes to execute in a forked test process.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    		"The maximum number of days to retain old audit log files based on the timestamp encoded in their filename.")
    	fs.IntVar(&o.MaxBackups, "audit-log-maxbackup", o.MaxBackups,
    		"The maximum number of old audit log files to retain. Setting a value of 0 will mean there's no restriction on the number of files.")
    	fs.IntVar(&o.MaxSize, "audit-log-maxsize", o.MaxSize,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

        checkState(
            this.maximumSize == UNSET_INT, "maximum size was already set to %s", this.maximumSize);
        checkState(
            this.maximumWeight == UNSET_INT,
            "maximum weight was already set to %s",
            this.maximumWeight);
        checkState(this.weigher == null, "maximum size can not be combined with weigher");
        checkArgument(maximumSize >= 0, "maximum size must not be negative");
        this.maximumSize = maximumSize;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

     *
     * <p><i>Performance notes:</i>
     *
     * <ul>
     *   <li>If you only access one end of the queue, and do use a maximum size, this class will perform
     *       significantly worse than a {@code PriorityQueue} with manual eviction above the maximum
     *       size. In many cases {@link Ordering#leastOf} may work for your use case with significantly
     *       improved (and asymptotically superior) performance.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // endpoint. These key/value pairs must conform with the label format.
      // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
      // Topology may include a maximum of 16 key/value pairs. This includes, but
      // is not limited to the following well known keys:
      // * kubernetes.io/hostname: the value indicates the hostname of the node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/CacheBuilder.java

        checkState(
            this.maximumSize == UNSET_INT, "maximum size was already set to %s", this.maximumSize);
        checkState(
            this.maximumWeight == UNSET_INT,
            "maximum weight was already set to %s",
            this.maximumWeight);
        checkState(this.weigher == null, "maximum size can not be combined with weigher");
        checkArgument(maximumSize >= 0, "maximum size must not be negative");
        this.maximumSize = maximumSize;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/encode.go

    	return e.dynTab.maxSize
    }
    
    // SetMaxDynamicTableSizeLimit changes the maximum value that can be
    // specified in SetMaxDynamicTableSize to v. By default, it is set to
    // 4096, which is the same size of the default dynamic header table
    // size described in HPACK specification. If the current maximum
    // dynamic header table size is strictly greater than v, "Header Table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/deepcopy.go

    	*out = *in
    
    	if in.Ref != nil {
    		in, out := &in.Ref, &out.Ref
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(string)
    			**out = **in
    		}
    	}
    
    	if in.Maximum != nil {
    		in, out := &in.Maximum, &out.Maximum
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(float64)
    			**out = **in
    		}
    	}
    
    	if in.Minimum != nil {
    		in, out := &in.Minimum, &out.Minimum
    		if *in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top