Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RegisterNode (0.64 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

                    )
                );
            }
            if (links == null) {
                links = new TreeMap<>();
            }
            links.put(child.getPath().getName(), child);
            modelRegistry.registerNode(child, registration.getActions());
        }
    
        @Override
        public void removeLink(String name) {
            if (links!=null && links.remove(name) != null) {
                modelRegistry.remove(getPath().child(name));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    	// the kubelet registers itself. This only takes effect when registerNode
    	// is true and upon the initial registration of the node.
    	// +optional
    	RegisterWithTaints []v1.Taint
    	// registerNode enables automatic registration with the apiserver.
    	// +optional
    	RegisterNode bool
    
    	// Tracing specifies the versioned configuration for OpenTelemetry tracing clients.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            }
    
            ModelNodeInternal root = modelGraph.getRoot();
            root.addLink(registration);
            return this;
        }
    
        @Override
        public void registerNode(ModelNodeInternal node, Multimap<ModelActionRole, ? extends ModelAction> actions) {
            // Disabled before 2.3 release due to not wanting to validate task names (which may contain invalid chars), at least not yet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.RegisterNode, "register-node", c.RegisterNode, "Register the node with the apiserver. If --kubeconfig is not provided, this flag is irrelevant, as the Kubelet won't have an apiserver to register with.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status.go

    	kl.syncNodeStatusMux.Lock()
    	defer kl.syncNodeStatusMux.Unlock()
    	ctx := context.Background()
    
    	if kl.kubeClient == nil || kl.heartbeatClient == nil {
    		return
    	}
    	if kl.registerNode {
    		// This will exit immediately if it doesn't need to do anything.
    		kl.registerWithAPIServer()
    	}
    	if err := kl.updateNodeStatus(ctx); err != nil {
    		klog.ErrorS(err, "Unable to update node status")
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top