Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for Constraint (0.12 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// nodeStatusUpdateFrequency in kubelet and renewInterval in NodeLease
    	// controller. The node health signal update frequency is the minimal of the
    	// two.
    	// There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than  the node health signal
    	//    update frequency, where N means number of retries allowed for kubelet to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    	// applied to all Pods in the StatefulSet with respect to the StatefulSet
    	// ordering constraints. When a scale operation is performed with this
    	// strategy, new Pods will be created from the specification version indicated
    	// by the StatefulSet's updateRevision.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    type StatefulSetUpdateStrategyType string
    
    const (
    	// RollingUpdateStatefulSetStrategyType indicates that update will be
    	// applied to all Pods in the StatefulSet with respect to the StatefulSet
    	// ordering constraints. When a scale operation is performed with this
    	// strategy, new Pods will be created from the specification version indicated
    	// by the StatefulSet's updateRevision.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // * Future completion is defined by when #value becomes non-null/non SetFuture
      // * Future completion can be observed if the waiters field contains a TOMBSTONE
    
      // Timed Get
      // There are a few design constraints to consider
      // * We want to be responsive to small timeouts, unpark() has non trivial latency overheads (I
      //   have observed 12 micros on 64-bit linux systems to wake up a parked thread). So if the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // * Future completion is defined by when #value becomes non-null/non SetFuture
      // * Future completion can be observed if the waiters field contains a TOMBSTONE
    
      // Timed Get
      // There are a few design constraints to consider
      // * We want to be responsive to small timeouts, unpark() has non trivial latency overheads (I
      //   have observed 12 micros on 64-bit linux systems to wake up a parked thread). So if the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. src/runtime/mprof.go

    //
    // There are several steps between the time that an M experiences contention and
    // when that contention may be added to the profile. This comes from our
    // constraints: We need to keep the critical section of each lock small,
    // especially when those locks are contended. The reporting code cannot acquire
    // new locks until the M has released all other locks, which means no memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.Struct podAnnotations = 11 [deprecated = true];
    
      // Pod anti-affinity label selector.
      //
      // Specify the pod anti-affinity that allows you to constrain which nodes
      // your pod is eligible to be scheduled based on labels on pods that are
      // already running on the node rather than based on labels on nodes.
      // There are currently two types of anti-affinity:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    === Performance improvements
    
    Apart from skipping the configuration phase, the configuration cache provides some additional performance improvements:
    
    - All tasks run in parallel by default, subject to dependency constraints.
    - Dependency resolution is cached.
    - Configuration state and dependency resolution state is discarded from heap after writing the task graph. This reduces the peak heap usage required for a given set of tasks.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    		rk := p.From.Reg
    		rj := p.To.Reg
    		rd := p.RegTo2
    
    		// See section 2.2.7.1 of https://loongson.github.io/LoongArch-Documentation/LoongArch-Vol1-EN.html
    		// for the register usage constraints.
    		if rd == rj || rd == rk {
    			c.ctxt.Diag("illegal register combination: %v\n", p)
    		}
    		o1 = OP_RRR(atomicInst[p.As], uint32(rk), uint32(rj), uint32(rd))
    	}
    
    	out[0] = o1
    	out[1] = o2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    // they're fresh from the operating system. It updates heapArena metadata that is
    // critical for future page allocations.
    //
    // There are no locking constraints on this method.
    func (h *mheap) allocNeedsZero(base, npage uintptr) (needZero bool) {
    	for npage > 0 {
    		ai := arenaIndex(base)
    		ha := h.arenas[ai.l1()][ai.l2()]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top