Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for infeasible (0.24 sec)

  1. android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java

       * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

       * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

       * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/ImmutableLongArray.java

       * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

       * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/ImmutableIntArray.java

       * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
       *
       * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
       * of values that will be added, if that knowledge is readily available. It is better to guess a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. src/log/slog/handler.go

    	defer func() {
    		if r := recover(); r != nil {
    			// If it panics with a nil pointer, the most likely cases are
    			// an encoding.TextMarshaler or error fails to guard against nil,
    			// in which case "<nil>" seems to be the feasible choice.
    			//
    			// Adapted from the code in fmt/print.go.
    			if v := reflect.ValueOf(v.any); v.Kind() == reflect.Pointer && v.IsNil() {
    				s.appendString("<nil>")
    				return
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/preemption/preemption.go

    	for node, nodeStatus := range unschedulableNodeStatus {
    		nodeStatuses[node] = nodeStatus
    	}
    	return candidates, nodeStatuses, err
    }
    
    // callExtenders calls given <extenders> to select the list of feasible candidates.
    // We will only check <candidates> with extenders that support preemption.
    // Extenders which do not support preemption may later prevent preemptor from being scheduled on the nominated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/image/png/reader_test.go

    			// happens. Instead we skip the Decode call (and its tests).
    			continue
    		} else if testing.Short() {
    			// Even for smaller image dimensions, calling Decode might allocate
    			// 1 GiB or more of memory. This is usually feasible, and we want
    			// to check that calling Decode doesn't panic if there's enough
    			// memory, but we provide a runtime switch (testing.Short) to skip
    			// these if it would OOM. See also http://golang.org/issue/5050
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    == Improve the performance of older Gradle releases
    
    Some projects cannot easily upgrade to a current Gradle version. While you should
    always upgrade Gradle to a recent version when possible, we recognize that it isn't always
    feasible for certain niche situations. In those select cases, check out these recommendations
    to optimize older versions of Gradle.
    
    === Enable the Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top