Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,213 for Maximum (0.22 sec)

  1. okcurl/src/main/kotlin/okhttp3/curl/Main.kt

      val connectTimeout: Int by option(
        "--connect-timeout",
        help = "Maximum time allowed for connection (seconds)",
      ).int().default(DEFAULT_TIMEOUT)
    
      val readTimeout: Int by option("--read-timeout", help = "Maximum time allowed for reading data (seconds)").int().default(DEFAULT_TIMEOUT)
    
      val callTimeout: Int by option(
        "--call-timeout",
        help = "Maximum time allowed for the entire call (seconds)",
      ).int().default(DEFAULT_TIMEOUT)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/order_by_dialect.mlir

      %13 = mhlo.add %11, %12 : tensor<32x10xf32>
      %14 = mhlo.maximum %13, %0 : tensor<32x10xf32>
      return %14 : tensor<32x10xf32>
    }
    // CHECK: ReadVariableOp
    // CHECK: mhlo.convolution
    // CHECK: mhlo.add
    // CHECK: mhlo.maximum
    // CHECK: mhlo.reshape
    // CHECK: mhlo.dot
    // CHECK: mhlo.add
    // CHECK: mhlo.maximum
    // CHECK: return{{.*}}tensor<32x10xf32>
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. releasenotes/notes/upstream-tls-version.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/36271
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 03:06:53 UTC 2022
    - 206 bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/DiscreteDomain.java

      }
    
      /**
       * Returns the maximum value of type {@code C}, if it has one. The maximum value is the unique
       * value for which {@link Comparable#compareTo(Object)} never returns a negative value for any
       * input of type {@code C}.
       *
       * <p>The default implementation throws {@code NoSuchElementException}.
       *
       * @return the maximum value of type {@code C}; never null
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/crypto/rand/rand_getentropy.go

    // license that can be found in the LICENSE file.
    
    //go:build openbsd || netbsd
    
    package rand
    
    import "internal/syscall/unix"
    
    func init() {
    	// getentropy(2) returns a maximum of 256 bytes per call.
    	altGetRandom = batched(unix.GetEntropy, 256)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 357 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top