Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for Maximum (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `forkEvery` — default: 0 (no maximum)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    type PriorityQueue struct {
    	*nominator
    
    	stop  chan struct{}
    	clock clock.Clock
    
    	// pod initial backoff duration.
    	podInitialBackoffDuration time.Duration
    	// pod maximum backoff duration.
    	podMaxBackoffDuration time.Duration
    	// the maximum time a pod can stay in the unschedulablePods.
    	podMaxInUnschedulablePodsDuration time.Duration
    
    	cond sync.Cond
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    the implementation, might do nothing and simply be an identity
    
    `input`: The tensor that has dynamic dimensions.
    `static_shape`: The static shape of the tensor, corresponds to the maximum bounds of each dimension.
    `output` is the input tensor with no changes done to it.
    
    Example usage:
    
    def tpu_call(args):
      def model_fn(args):
        # do something with dynamic tensor
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	// sys.PhysPageSize is an upper-bound on the physical page size.
    	minPhysPageSize = 4096
    
    	// maxPhysPageSize is the maximum page size the runtime supports.
    	maxPhysPageSize = 512 << 10
    
    	// maxPhysHugePageSize sets an upper-bound on the maximum huge page size
    	// that the runtime supports.
    	maxPhysHugePageSize = pallocChunkBytes
    
    	// pagesPerReclaimerChunk indicates how many pages to scan from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	// explicitly requested gzip it is not automatically
    	// uncompressed.
    	DisableCompression bool
    
    	// MaxIdleConns controls the maximum number of idle (keep-alive)
    	// connections across all hosts. Zero means no limit.
    	MaxIdleConns int
    
    	// MaxIdleConnsPerHost, if non-zero, controls the maximum idle
    	// (keep-alive) connections to keep per-host. If zero,
    	// DefaultMaxIdleConnsPerHost is used.
    	MaxIdleConnsPerHost int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ----
    org.gradle.configuration-cache.problems=warn
    ----
    
    [[config_cache:usage:max_problems]]
    === Allowing a maximum number of problems
    
    When configuration cache problems are turned into warnings, Gradle will fail the build if `512` problems are found by default.
    
    This can be adjusted by specifying an allowed maximum number of problems on the command line:
    
    ----
    ❯ gradle -Dorg.gradle.configuration-cache.max-problems=5
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    			writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrAccessDenied, err), r.URL)
    			return
    		}
    
    		// Ensure that the object size is within expected range, also the file size
    		// should not exceed the maximum single Put size (5 GiB)
    		lengthRange := postPolicyForm.Conditions.ContentLengthRange
    		if lengthRange.Valid {
    			hashReader.SetExpectedMin(lengthRange.Min)
    			hashReader.SetExpectedMax(lengthRange.Max)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    	// Maximum length of the string returned from servicePortChainNameBase or
    	// servicePortEndpointChainNameBase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[dequant_idx].get()),
                  Eq(BuiltinOperator_DEQUANTIZE));
    
      const auto& op = subgraph->operators[1].get();
    
      // Check that we have MINIMUM or MAXIMUM operator.
      auto op_builtin_code =
          GetBuiltinCode(model_.operator_codes[op->opcode_index].get());
      ASSERT_TRUE(op_builtin_code == tflite::BuiltinOperator_MINIMUM ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top