Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 162 for sensible (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/object-api-utils.go

    			compressedOffset += part.Size
    		} else {
    			firstPartIdx = i
    			skipLength = cumulativeActualSize - part.ActualSize
    			break
    		}
    	}
    	partSkip = offset - skipLength
    
    	// Load index and skip more if feasible.
    	if partSkip > 0 && len(oi.Parts) > firstPartIdx && len(oi.Parts[firstPartIdx].Index) > 0 {
    		_, isEncrypted := crypto.IsEncrypted(oi.UserDefined)
    		if isEncrypted {
    			dec, err := decrypt(oi.Parts[firstPartIdx].Index)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      /**
       * Builds a cache which does not automatically load values when keys are requested.
       *
       * <p>Consider {@link #build(CacheLoader)} instead, if it is feasible to implement a {@code
       * CacheLoader}.
       *
       * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be
       * invoked again to create multiple independent caches.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. src/os/exec/exec_test.go

    			// (The behavior of LookPath varies depending on this variable.)
    			//
    			// Ideally we would test both with the variable set and with it cleared,
    			// but I (bcmills) am not sure that that's feasible: it may already be set
    			// in the Windows registry, and I'm not sure if it is possible to remove
    			// a registry variable in a program's environment.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    // Unless explicitly stated as such (or *Plain), all of the
    // tests below are two-way tests. When introducing new tests,
    // please try to make them two-way as well to ensure that
    // marshaling and unmarshaling are as symmetrical as feasible.
    var marshalTests = []struct {
    	Value          any
    	ExpectXML      string
    	MarshalOnly    bool
    	MarshalError   string
    	UnmarshalOnly  bool
    	UnmarshalError string
    }{
    	// Test nil marshals to nothing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top