Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for tolerated (0.27 sec)

  1. pkg/apis/core/validation/validation_test.go

    			s.Spec.ClusterIP = core.ClusterIPNone
    			s.Spec.ClusterIPs = []string{core.ClusterIPNone}
    		},
    		// in the v1 API, targetPorts on headless services were tolerated.
    		// once we have version-specific validation, we can reject this on newer API versions, but until then, we have to tolerate it for compatibility.
    		// numErrs: 1,
    		numErrs: 0,
    	}, {
    		name: "invalid port headless 2",
    		tweakSvc: func(s *core.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			existingKubeConfig: config,
    			kubeConfig:         configWithAnotherClusterCa,
    			expectedError:      true,
    		},
    		{ // if KubeConfig is not equal to the existingKubeConfig - tolerate custom server addresses
    			name:               "KubeConfig referst to the cluster with another address",
    			existingKubeConfig: config,
    			kubeConfig:         configWithAnotherClusterAddress,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        assertTrue(elapsedMillis < timelimitMillis);
      }
    
      /**
       * Await an interrupt, then clear the interrupt status. Similar to {@code
       * assertTrue(Thread.interrupted())} except that this version tolerates late interrupts.
       */
      private static void assertInterrupted() {
        try {
          /*
           * The sleep() will end immediately if we've already been interrupted or
           * wait patiently for the interrupt if not.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/crypto/x509/parser.go

    	cert := &Certificate{}
    
    	input := cryptobyte.String(der)
    	// we read the SEQUENCE including length and tag bytes so that
    	// we can populate Certificate.Raw, before unwrapping the
    	// SEQUENCE so it can be operated on
    	if !input.ReadASN1Element(&input, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed certificate")
    	}
    	cert.Raw = input
    	if !input.ReadASN1(&input, cryptobyte_asn1.SEQUENCE) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// Evict any already-running pods that do not tolerate the taint.
    	// Currently enforced by NodeController.
    	TaintEffectNoExecute TaintEffect = "NoExecute"
    )
    
    // Toleration represents the toleration object that can be attached to a pod.
    // The pod this Toleration is attached to tolerates any taint that matches
    // the triple <key,value,effect> using the matching operator <operator>.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.\n\nPossible enum values:\n - `\"NoExecute\"` Evict any already-running pods that do not tolerate the taint. Currently enforced by NodeController.\n - `\"NoSchedule\"` Do not allow new pods to schedule onto the node unless they tolerate the taint, but allow all pods submitted to Kubelet without going through the scheduler to start,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"tolerationSeconds": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
    }
    
    func (Toleration) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            }
    
        val ConeKotlinType.candidateClassId: ClassId?
            get() {
                return when (this) {
                    is ConeErrorType -> when (val diagnostic = this.diagnostic) {
                        // Tolerate code that misses type parameters while shortening it.
                        is ConeUnmatchedTypeArgumentsError -> diagnostic.symbol.classId
                        else -> null
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// TaintEffectNoScheduleNoAdmit TaintEffect = "NoScheduleNoAdmit"
    
    	// Evict any already-running pods that do not tolerate the taint.
    	// Currently enforced by NodeController.
    	TaintEffectNoExecute TaintEffect = "NoExecute"
    )
    
    // The pod this Toleration is attached to tolerates any taint that matches
    // the triple <key,value,effect> using the matching operator <operator>.
    type Toleration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_executor.go

    	// If any volume is not attached right now, it will update the actual state of the world to reflect that.
    	// Note that this operation could be operated concurrently with other attach/detach operations.
    	// In theory (but very unlikely in practise), race condition among these operations might mark volume as detached
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top