Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 97 of 97 for Filetime (0.17 sec)

  1. cmd/utils.go

    			}
    		}
    	}
    	return dst, nil
    }
    
    func setDefaultProfilerRates() {
    	runtime.MemProfileRate = 128 << 10 // 512KB -> 128K - Must be constant throughout application lifetime.
    	runtime.SetMutexProfileFraction(0) // Disable until needed
    	runtime.SetBlockProfileRate(0)     // Disable until needed
    }
    
    // Starts a profiler returns nil if profiler is not enabled, caller needs to handle this.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/types.go

    // AllocationResult contains attributes of an allocated resource.
    type AllocationResult struct {
    	// ResourceHandles contain the state associated with an allocation that
    	// should be maintained throughout the lifetime of a claim. Each
    	// ResourceHandle contains data that should be passed to a specific kubelet
    	// plugin once it lands on a node. This data is returned by the driver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry.go

    	// its class and protocol. This is protected by mu.
    	// Currently, this only applies to metrics, but a similar concept can likely be applied to logging and
    	// tracing for performance.
    	// The computedMetricsFilters lifetime is bound to the Telemetries object. During a push context
    	// creation, we will preserve the Telemetries (and thus the cache) if not Telemetries are modified.
    	// As result, this cache will live until any Telemetry is modified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. src/go/types/call.go

    				// both, the value and the pointer receiver method set and represent
    				// them in a single structure.
    				// TODO(gri) Consider also using a method set cache for the lifetime
    				// of checker once we rely on MethodSet lookup instead of individual
    				// lookup.
    				mset := NewMethodSet(typ)
    				if m := mset.Lookup(check.pkg, sel); m == nil || m.obj != obj {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    	// Starting at the average size uses at most 2x the space that
    	// an ideal algorithm would have used.
    	// This is just a heuristic to avoid excessive stack growth work
    	// early in a goroutine's lifetime. See issue 18138. Stacks that
    	// are allocated too small can still grow, and stacks allocated
    	// too large can still shrink.
    	var scannedStackSize uint64
    	var scannedStacks uint64
    	for _, p := range allp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

       * {@link #build}. Weights are measured and recorded when entries are inserted into the cache, and
       * are thus effectively static during the lifetime of a cache entry.
       *
       * <p>When the weight of an entry is zero it will not be considered for size-based eviction
       * (though it still may be evicted by other means).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. src/runtime/panic.go

    // It also poisons *drangefunc.head so that any future
    // deferprocat using that head will throw.
    // (The atomic head is ordinary garbage collected memory so that
    // it's not a problem if user code holds onto it beyond
    // the lifetime of drangefunc.)
    //
    // TODO: We could arrange for the compiler to call into the
    // runtime after the loop finishes normally, to do an eager
    // deferconvert, which would catch calling the loop body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top