Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,213 for Maximum (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

      bool HasPadding(mlir::stablehlo::ReduceWindowOp op) const {
        return op.getPadding() != std::nullopt;
      }
    };
    
    // Rewrites `maximum(transpose(%rhs), %lhs)` patterns to
    // `transpose(maximum(%rhs, transpose(%lhs)))`.
    class DeferActivationTransposeForMaxOp : public OpRewritePattern<MaxOp> {
     public:
      using OpRewritePattern<MaxOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. cluster/kubemark/gce/config-default.sh

    # (e.g. kubemark master, Heapster) enough resources to handle maximum cluster size.
    if [[ "${ENABLE_KUBEMARK_CLUSTER_AUTOSCALER}" == "true" ]]; then
      NUM_REPLICAS=1
      if [[ -n "$NUM_NODES" ]]; then
        echo "WARNING: Using Cluster Autoscaler, ignoring NUM_NODES parameter. Set KUBEMARK_AUTOSCALER_MAX_NODES to specify maximum size of the cluster."
      fi
    fi
    
    #Optional: Enable kube dns.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 09 19:04:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/route/sys_darwin.go

    	switch typ {
    	case syscall.NET_RT_STAT, syscall.NET_RT_TRASH:
    		return false
    	default:
    		return true
    	}
    }
    
    // RouteMetrics represents route metrics.
    type RouteMetrics struct {
    	PathMTU int // path maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. common/config/.golangci-format.yml

      # Default: []
      exclude-files:
        - ".*\\.pb\\.go"
        - ".*\\.gen\\.go"
      # Maximum issues count per one linter.
      # Set to 0 to disable.
      # Default: 50
      max-issues-per-linter: 0
      # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/zcallback_windows.go

    // Code generated by wincallback.go using 'go generate'. DO NOT EDIT.
    
    package runtime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 18 22:18:23 UTC 2018
    - 155 bytes
    - Viewed (0)
  10. 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)
Back to top