Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for takes (0.11 sec)

  1. pkg/apis/core/types.go

    	// MatchLabelKeys is a set of pod label keys to select which pods will
    	// be taken into consideration. The keys are used to lookup values from the
    	// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
    	// to select the group of existing pods which pods will be taken into consideration
    	// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"runAsUser":                "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional LifecycleHandler preStop = 2;
    }
    
    // LifecycleHandler defines a specific action that should be taken in a lifecycle
    // hook. One and only one of the fields, except TCPSocket must be specified.
    message LifecycleHandler {
      // Exec specifies the action to take.
      // +optional
      optional ExecAction exec = 1;
    
      // HTTPGet specifies the http request to perform.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // MatchLabelKeys is a set of pod label keys to select which pods will
      // be taken into consideration. The keys are used to lookup values from the
      // incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
      // to select the group of existing pods which pods will be taken into consideration
      // for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// MatchLabelKeys is a set of pod label keys to select which pods will
    	// be taken into consideration. The keys are used to lookup values from the
    	// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
    	// to select the group of existing pods which pods will be taken into consideration
    	// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. doc/go_spec.html

    var p ptr = nil
    </pre>
    
    <p>
    The functions <code>Alignof</code> and <code>Sizeof</code> take an expression <code>x</code>
    of any type and return the alignment or size, respectively, of a hypothetical variable <code>v</code>
    as if <code>v</code> was declared via <code>var v = x</code>.
    </p>
    <p>
    The function <code>Offsetof</code> takes a (possibly parenthesized) <a href="#Selectors">selector</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

    complete when there is one successfully completed Pod for each index. When value is `Indexed`, .spec.completions must be specified and `.spec.parallelism` must be less than or equal to 10^5. In addition, The Pod name takes the form `$(job-name)-$(index)-$(random-string)`, the Pod hostname takes the form `$(job-name)-$(index)`.\n\nMore completion modes can be added in the future. If the Job controller observes a mode that it doesn't recognize, which is possible during upgrades due to version skew, the controller...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      takes precedence over `\"*.example.com\"`, and `\"*.example.com\"`
                      takes precedence over `\"\"`. \n Additionally, if there are multiple
                      wildcard entries, more specific wildcard entries must be processed
                      before less specific wildcard entries. For example, `\"*.foo.example.com\"`
                      takes precedence over `\"*.example.com\"`. The precise definition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.22.md

    - Ensures `ExecProbeTimeout=false` kubelet feature gate with dockershim is taken into account, when the exec probe takes longer than `timeoutSeconds` configuration. ([#100200](https://github.com/kubernetes/kubernetes/pull/100200), [@jackfrancis](https://github.com/jackfrancis))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    		default:
    		}
    		if a := cs.flow.available(); a > 0 {
    			take := a
    			if int(take) > maxBytes {
    
    				take = int32(maxBytes) // can't truncate int; take is int32
    			}
    			if take > int32(cc.maxFrameSize) {
    				take = int32(cc.maxFrameSize)
    			}
    			cs.flow.take(take)
    			return take, nil
    		}
    		cc.cond.Wait()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top