Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for Maximum (0.27 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    const maxLengthShift = 16
    
    // maxLengthMask is a mask for the maxLength value.
    const maxLengthMask = 0x1f << maxLengthShift
    
    // MaxLength returns an Option that limits the maximum length of a
    // demangled string. The maximum length is expressed as a power of 2,
    // so a value of 1 limits the returned string to 2 characters, and
    // a value of 16 limits the returned string to 65,536 characters.
    // The value must be between 1 and 30.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    		return nil, EINVAL
    	}
    	// Valid UTF-8 characters between 1 and 3 bytes require one uint16.
    	// Valid UTF-8 characters of 4 bytes require two uint16.
    	// Bytes with invalid UTF-8 encoding require maximum one uint16 per byte.
    	// So the number of UTF-8 code units (len(s)) is always greater or
    	// equal than the number of UTF-16 code units.
    	// Also account for the terminating NUL character.
    	buf := make([]uint16, 0, len(s)+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %2 = "tfl.maximum"(%0, %1) : (tensor<1x6x6x16xf32>, tensor<1x6x6x16xf32>) -> tensor<1x6x6x16xf32>
      func.return %2 : tensor<1x6x6x16xf32>
    
    // CHECK: %0 = "tfl.dequantize"(%arg0)
    // CHECK: %1 = "tfl.dequantize"(%arg1)
    // CHECK: %2 = "tfl.maximum"(%0, %1)
    // CHECK: %3 = "tfl.quantize"(%2)
    // CHECK: %4 = "tfl.dequantize"(%3)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	//
    	// If any store has garbage collection enabled, it must also be enabled in
    	// the kube-controller-manager.
    	EnableGarbageCollection bool
    
    	// DeleteCollectionWorkers is the maximum number of workers in a single
    	// DeleteCollection call. Delete requests for the items in a collection
    	// are issued in parallel.
    	DeleteCollectionWorkers int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    You can <<checkstyle_plugin.adoc#sec:checkstyle_customize_memory,increase the maximum memory for the Checkstyle process>> by setting the `maxHeapSize` for the Checkstyle task.
    By default, the process will start with a maximum heap size of 512MB.
    
    We also recommend to update Checkstyle to version 9.3 or later.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          *from->xla_scope() != *to->xla_scope()) {
        return LogNotContractableAndReturnFalse(
            from, to, "the two nodes have mismatching XLA scopes");
      }
    
      // Don't exceed the maximum cluster size.
      if (from->cluster_size() + to->cluster_size() >
          debug_options_.max_cluster_size) {
        return LogNotContractableAndReturnFalse(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    const usesLR = sys.MinFrameSize > 0
    
    const (
    	// tracebackInnerFrames is the number of innermost frames to print in a
    	// stack trace. The total maximum frames is tracebackInnerFrames +
    	// tracebackOuterFrames.
    	tracebackInnerFrames = 50
    
    	// tracebackOuterFrames is the number of outermost frames to print in a
    	// stack trace.
    	tracebackOuterFrames = 50
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/map.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/math"
    	"unsafe"
    )
    
    const (
    	// Maximum number of key/elem pairs a bucket can hold.
    	bucketCntBits = abi.MapBucketCountBits
    
    	// Maximum average load of a bucket that triggers growth is bucketCnt*13/16 (about 80% full)
    	// Because of minimum alignment rules, bucketCnt is known to be at least 8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (b PSAPI_WORKING_SET_EX_BLOCK) Valid() bool {
    	return (b & 1) == 1
    }
    
    // ShareCount is the number of processes that share this page. The maximum value of this member is 7.
    func (b PSAPI_WORKING_SET_EX_BLOCK) ShareCount() uint64 {
    	return b.intField(1, 3)
    }
    
    // Win32Protection is the memory protection attributes of the page. For a list of values, see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top