Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for Constraint (0.16 sec)

  1. src/crypto/x509/x509.go

    	DNSNames       []string
    	EmailAddresses []string
    	IPAddresses    []net.IP
    	URIs           []*url.URL
    
    	// Name constraints
    	PermittedDNSDomainsCritical bool // if true then the name constraints are marked critical.
    	PermittedDNSDomains         []string
    	ExcludedDNSDomains          []string
    	PermittedIPRanges           []*net.IPNet
    	ExcludedIPRanges            []*net.IPNet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // +optional
      optional ParamKind paramKind = 1;
    
      // MatchConstraints specifies what resources this policy is designed to validate.
      // The AdmissionPolicy cares about a request if it matches _all_ Constraints.
      // However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
      // ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// MatchConstraints specifies what resources this policy is designed to validate.
    	// The AdmissionPolicy cares about a request if it matches _all_ Constraints.
    	// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
    	// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    					Status: policy.PodDisruptionBudgetStatus{DisruptionsAllowed: 0},
    				},
    			},
    			disableParallelism: true,
    			expected: [][]candidate{
    				{
    					// Even though the DefaultPreemptionArgs constraints suggest that the
    					// minimum number of candidates is 2, we get three candidates here
    					// because we're okay with being a little over (in production, if a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

              this.routeDatabase = null
            }
    
            this.hostnameVerifier = hostnameVerifier
          }
    
        /**
         * Sets the certificate pinner that constrains which certificates are trusted. By default HTTPS
         * connections rely on only the [SSL socket factory][sslSocketFactory] to establish trust.
         * Pinning certificates avoids the need to trust certificate authorities.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top