Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for gStates (0.15 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// If specified, all readiness gates will be evaluated for pod readiness.
    	// A pod is ready when all its containers are ready AND
    	// all conditions specified in the readiness gates have status equal to "True"
    	// More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      optional PodDNSConfig dnsConfig = 26;
    
      // If specified, all readiness gates will be evaluated for pod readiness.
      // A pod is ready when all its containers are ready AND
      // all conditions specified in the readiness gates have status equal to "True"
      // More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
      // +optional
      // +listType=atomic
      repeated PodReadinessGate readinessGates = 28;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.22.md

    - The pod phase lifecycle guarantees that terminal Pods, those whose states are Unready or Succeeded, can not regress and will have all container stopped. Hence, terminal Pods will never be reachable and should not publish their IP addresses on the Endpoints or EndpointSlices, independently of the Service TolerateUnready...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    		// waiting for this frame to be written, so an http.Flush mid-handler
    		// writes out the correct value of keys, before a handler later potentially
    		// mutates it.
    		errc = http2errChanPool.Get().(chan error)
    	}
    	if err := sc.writeFrameFromHandler(http2FrameWriteRequest{
    		write:  headerData,
    		stream: st,
    		done:   errc,
    	}); err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      optional PodDNSConfig dnsConfig = 26;
    
      // If specified, all readiness gates will be evaluated for pod readiness.
      // A pod is ready when all its containers are ready AND
      // all conditions specified in the readiness gates have status equal to "True"
      // More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates
      // +optional
      repeated PodReadinessGate readinessGates = 28;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

    Ephemeral Volume](https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/596-csi-inline-volumes) feature allows CSI volumes to be specified directly in the pod specification for ephemeral use cases. They can be used to inject arbitrary states, such as configuration, secrets, identity, variables or similar information, directly inside pods using a mounted volume. This was initially introduced in 1.15 as an alpha feature, and it moved to GA. This feature is used by some CSI drivers such...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "sideEffects": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    }
    
    func validateSchedulingGates(schedulingGates []core.PodSchedulingGate, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	// There should be no duplicates in the list of scheduling gates.
    	seen := sets.Set[string]{}
    	for i, schedulingGate := range schedulingGates {
    		allErrs = append(allErrs, ValidateQualifiedName(schedulingGate.Name, fldPath.Index(i))...)
    		if seen.Has(schedulingGate.Name) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    						output:   "",
    					},
    				})
    			}
    
    			// We have to check the firewall rule manually rather than via
    			// runPacketFlowTests(), because the packet tracer doesn't
    			// implement conntrack states.
    			var expected string
    			if tc.expectFirewall {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-64233`](https://youtrack.jetbrains.com/issue/KT-64233) K2: K1/K2: ensure JVM ABI consistency for quality gates projects
    - [`KT-63535`](https://youtrack.jetbrains.com/issue/KT-63535) K2: Apply DFA implications for nullable Nothing to both sides
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top