Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,143 for Maximum (0.13 sec)

  1. tensorflow/compiler/aot/benchmark.h

      // if neither max_iters nor max_micros is set.
      static constexpr int64_t kDefaultMicros = 3000000;
    
      int64_t max_iters = 0;   // Maximum iterations to run, ignored if <= 0.
      int64_t max_micros = 0;  // Maximum microseconds to run, ignored if <= 0.
    };
    
    // Stats holds statistics collected during benchmarking.
    struct Stats {
      std::vector<int64_t> per_iter_us;  // Per-iteration deltas in us.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    type BatchConfig struct {
    	// BufferSize defines a size of the buffering queue.
    	BufferSize int
    	// MaxBatchSize defines maximum size of a batch.
    	MaxBatchSize int
    	// MaxBatchWait indicates the maximum interval between two batches.
    	MaxBatchWait time.Duration
    
    	// ThrottleEnable defines whether throttling will be applied to the batching process.
    	ThrottleEnable bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    queue_dir            (path)               staging dir for undelivered messages e.g. '/home/events'
    queue_limit          (number)             maximum limit for undelivered messages, defaults to '100000'
    max_open_connections (number)             maximum number of open connections to the database, defaults to '2'
    comment              (sentence)           optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. pkg/volume/util/attach_limit.go

    	// DefaultMaxCinderVolumes defines the maximum number of PD Volumes for Cinder
    	// For Openstack we are keeping this to a high enough value so as depending on backend
    	// cluster admins can configure it.
    	DefaultMaxCinderVolumes = 256
    
    	// CSIAttachLimitPrefix defines prefix used for CSI volumes
    	CSIAttachLimitPrefix = "attachable-volumes-csi-"
    
    	// ResourceNameLengthLimit stores maximum allowed Length for a ResourceName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. tests/fuzz/pilot_model_fuzzer.go

    func createPorts(f *fuzz.ConsumeFuzzer) ([]*model.Port, error) {
    	ports := make([]*model.Port, 0, 20)
    	numberOfPorts, err := f.GetInt()
    	if err != nil {
    		return ports, err
    	}
    	// Maximum 20 ports:
    	maxPorts := numberOfPorts % 20
    	if maxPorts == 0 {
    		maxPorts = 1
    	}
    	for i := 0; i < maxPorts; i++ {
    		port, err := createPort(f)
    		if err != nil {
    			return ports, err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 18:13:06 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top