Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for trees (0.07 sec)

  1. pkg/apis/core/types.go

    	// to start, and allow all already-running pods to continue running.
    	// Enforced by the scheduler.
    	TaintEffectNoSchedule TaintEffect = "NoSchedule"
    	// Like TaintEffectNoSchedule, but the scheduler tries not to schedule
    	// new pods onto the node, rather than prohibiting new pods from scheduling
    	// onto the node entirely. Enforced by the scheduler.
    	TaintEffectPreferNoSchedule TaintEffect = "PreferNoSchedule"
    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. doc/go_spec.html

    // iteration support for a recursive tree data structure
    type Tree[K cmp.Ordered, V any] struct {
    	left, right *Tree[K, V]
    	key         K
    	value       V
    }
    
    func (t *Tree[K, V]) walk(yield func(key K, val V) bool) bool {
    	return t == nil || t.left.walk(yield) && yield(t.key, t.value) && t.right.walk(yield)
    }
    
    func (t *Tree[K, V]) Walk(yield func(key K, val V) bool) {
    	t.walk(yield)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // reports this record in Assigned. Assigned only updates in the status after
      // the record has been checkpointed to disk. When the Kubelet is restarted,
      // it tries to make the Assigned config the Active config by loading and
      // validating the checkpointed payload identified by Assigned.
      // +optional
      optional NodeConfigSource assigned = 1;
    
    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/types_swagger_doc_generated.go

    	"active":        "Active reports the checkpointed config the node is actively using. Active will represent either the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// to start, and allow all already-running pods to continue running.
    	// Enforced by the scheduler.
    	TaintEffectNoSchedule TaintEffect = "NoSchedule"
    	// Like TaintEffectNoSchedule, but the scheduler tries not to schedule
    	// new pods onto the node, rather than prohibiting new pods from scheduling
    	// onto the node entirely. Enforced by the scheduler.
    	TaintEffectPreferNoSchedule TaintEffect = "PreferNoSchedule"
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // reports this record in Assigned. Assigned only updates in the status after
      // the record has been checkpointed to disk. When the Kubelet is restarted,
      // it tries to make the Assigned config the Active config by loading and
      // validating the checkpointed payload identified by Assigned.
      // +optional
      optional NodeConfigSource assigned = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-61970`](https://youtrack.jetbrains.com/issue/KT-61970) Refactor IR and FIR tree generators to reuse common logic
    - [`KT-61703`](https://youtrack.jetbrains.com/issue/KT-61703) Drop the dependency on kotlinpoet for IR tree generation
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    		{
    			// So long at the schema information accessible to the CEL expression is valid, the expression should be validated.
    			name: "do not skip when OpenAPIv3 schema is an invalid structural schema in a separate part of the schema tree",
    			opts: validationOptions{requireStructuralSchema: true},
    			input: apiextensions.CustomResourceValidation{
    				OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    					Type: "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "activeDeadlineSeconds": {
                "description": "Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer. If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again.",
                "format": "int64",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top