Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 196 for node_ (0.04 sec)

  1. cluster/gce/gci/node.yaml

          StandardOutput=journal+console
    
          [Install]
          WantedBy=kubernetes.target
    
      - path: /etc/systemd/system/kube-node-configuration.service
        permissions: 0644
        owner: root
        content: |
          [Unit]
          Description=Configure kubernetes node
          After=kube-node-installation.service
    
          [Service]
          Type=oneshot
          RemainAfterExit=yes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 13 18:38:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. pkg/util/node/node.go

    // node in a single-stack cluster, or a dual-stack pair of IPs in a dual-stack cluster
    // (for nodes that actually have dual-stack IPs). Among other things, the IPs returned
    // from this function are used as the `.status.PodIPs` values for host-network pods on the
    // node, and the first IP is used as the `.status.HostIP` for all pods on the node.
    func GetNodeHostIPs(node *v1.Node) ([]net.IP, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeBuilderTest.java

                public int read(char[] cbuf, int off, int len) throws IOException {
                    return super.read(cbuf, off, 1);
                }
            };
            XmlNode node1 = XmlNodeBuilder.build(r);
            XmlNode node2 = XmlNodeBuilder.build(r);
            assertEquals(node1, node2);
        }
    
        @Test
        void testWithNamespace() throws Exception {
            String doc = "<?xml version='1.0'?><doc xmlns='foo:bar'/>";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/registry/core/node/storage/storage_test.go

    			},
    		},
    	}
    
    	for _, tweak := range tweaks {
    		tweak(node)
    	}
    
    	return node
    }
    
    func setNodeIPAddress(addr string) tweak {
    	return func(node *api.Node) {
    		node.Status.Addresses = []api.NodeAddress{
    			{Type: api.NodeInternalIP, Address: addr},
    		}
    	}
    }
    
    func setNodeDaemonEndpoint(port int32) tweak {
    	return func(node *api.Node) {
    		node.Status.DaemonEndpoints = api.NodeDaemonEndpoints{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 01 12:49:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/sync/sync_test.go

    			mode:      SyncFromCloud,
    			node:      nodeWithCIDRRange,
    			events:    []fakeEvent{{"node1", "CloudCIDRAllocatorInvalidMode"}},
    			wantError: true,
    		},
    		{
    			desc: "update alias from node",
    			mode: SyncFromCluster,
    			node: nodeWithCIDRRange,
    			// XXX/bowei -- validation
    		},
    		{
    			desc: "update node from alias",
    			mode: SyncFromCloud,
    			node: nodeWithoutCIDRRange,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. pkg/proxy/node.go

    // OnNodeAdd is a handler for Node creates.
    func (n *NodeEligibleHandler) OnNodeAdd(node *v1.Node) { n.HealthServer.SyncNode(node) }
    
    // OnNodeUpdate is a handler for Node updates.
    func (n *NodeEligibleHandler) OnNodeUpdate(_, node *v1.Node) { n.HealthServer.SyncNode(node) }
    
    // OnNodeDelete is a handler for Node deletes.
    func (n *NodeEligibleHandler) OnNodeDelete(node *v1.Node) { n.HealthServer.SyncNode(node) }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pkg/kubelet/config/common_test.go

    		expected  string
    		overwrite string
    		shouldErr bool
    	}{
    		{
    			"node1",
    			"static-pod1",
    			"static-pod1-node1",
    			"",
    			false,
    		},
    		{
    			"Node1",
    			"static-pod1",
    			"static-pod1-node1",
    			"",
    			false,
    		},
    		{
    			"NODE1",
    			"static-pod1",
    			"static-pod1-node1",
    			"static-pod1-NODE1",
    			true,
    		},
    	}
    	for _, c := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/runtime/lfstack.go

    //
    // This stack is intrusive. Nodes must embed lfnode as the first field.
    //
    // The stack does not keep GC-visible pointers to nodes, so the caller
    // must ensure the nodes are allocated outside the Go heap.
    type lfstack uint64
    
    func (head *lfstack) push(node *lfnode) {
    	node.pushcnt++
    	new := lfstackPack(node, node.pushcnt)
    	if node1 := lfstackUnpack(new); node1 != node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. cluster/gce/gci/node-helper.sh

    source "${KUBE_ROOT}/cluster/gce/gci/helper.sh"
    
    # shellcheck disable=SC2120
    function get-node-instance-metadata-from-file {
      local kube_env=${1:-node-kube-env} # optional
      local metadata=""
      metadata+="kube-env=${KUBE_TEMP}/${kube_env}.yaml,"
      metadata+="kubelet-config=${KUBE_TEMP}/node-kubelet-config.yaml,"
      metadata+="user-data=${KUBE_ROOT}/cluster/gce/gci/node.yaml,"
      metadata+="configure-sh=${KUBE_ROOT}/cluster/gce/gci/configure.sh,"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/MetadataGraphNode.java

    import java.util.List;
    
    /**
     * MetadataGraph node - as it's a directed graph - holds adjacency lists for incident and exident nodes
     *
     *
     */
    @Deprecated
    public class MetadataGraphNode {
        /** node payload */
        MavenArtifactMetadata metadata;
    
        /** nodes, incident to this (depend on me) */
        List<MetadataGraphNode> inNodes;
    
        /** nodes, exident to this (I depend on) */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top