Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for assign_id (0.44 sec)

  1. pkg/apis/core/types.go

    	// 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
    	Assigned *NodeConfigSource
    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

    	"assigned":      "Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed...
    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. staging/src/k8s.io/api/core/v1/types.go

    	// 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
    	Assigned *NodeConfigSource `json:"assigned,omitempty" protobuf:"bytes,1,opt,name=assigned"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. doc/go_spec.html

    <p>
    In assignments, each value must be <a href="#Assignability">assignable</a>
    to the type of the operand to which it is assigned, with the following special cases:
    </p>
    
    <ol>
    <li>
    	Any typed value may be assigned to the blank identifier.
    </li>
    
    <li>
    	If an untyped constant
    	is assigned to a variable of interface type or the blank identifier,
    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. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      provided in the spec under some conditions: \n * no addresses are
                      specified, all addresses are dynamically assigned * a combination
                      of specified and dynamic addresses are assigned * a specified address
                      was unusable (e.g. already in use) \n "
                    items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    func validateNodeConfigStatus(status *core.NodeConfigStatus, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if status.Assigned != nil {
    		allErrs = append(allErrs, validateNodeConfigSourceStatus(status.Assigned, fldPath.Child("assigned"))...)
    	}
    	if status.Active != nil {
    		allErrs = append(allErrs, validateNodeConfigSourceStatus(status.Active, fldPath.Child("active"))...)
    	}
    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/registry/core/service/storage/storage_test.go

    					if p.NodePort == 0 {
    						t.Errorf("expected nodePort to be assigned: %d", p.NodePort)
    					}
    					if portIsAllocated(t, storage.alloc.serviceNodePorts, p.NodePort) {
    						t.Errorf("expected nodePort to not be allocated: %d", p.NodePort)
    					}
    				}
    
    				if updatedSvc.Spec.HealthCheckNodePort == 0 {
    					t.Errorf("expected HCNP to be assigned: %d", updatedSvc.Spec.HealthCheckNodePort)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    		}
    		curr.state = http2priorityNodeOpen
    		return
    	}
    
    	// RFC 7540, Section 5.3.5:
    	//  "All streams are initially assigned a non-exclusive dependency on stream 0x0.
    	//  Pushed streams initially depend on their associated stream. In both cases,
    	//  streams are assigned a default weight of 16."
    	parent := ws.nodes[options.PusherID]
    	if parent == nil {
    		parent = &ws.root
    	}
    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