Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 469 for node2 (0.32 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. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        }
    
        /**
         * Visits the "post-execution" nodes of this node. These nodes should be treated as though they also produce the outputs or
         * results of this node. That is, all nodes that depend on this node should also depend on these nodes. This method is called when
         * this node has executed successfully and before any of its dependents are started, allowing some work of this node to be dynamically split
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  3. 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)
  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/tainteviction/taint_eviction_test.go

    			newNode:      addTaintsToNode(testutil.NewNode("node1"), "testTaint1", "taint1", []int{1}),
    			expectPatch:  true,
    			expectDelete: true,
    		},
    		{
    			description: "new pod2 created on tainted Node",
    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    			},
    			prevPod:      nil,
    			newPod:       testutil.NewPod("pod2", "node1"),
    			oldNode:      testutil.NewNode("node1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/ops.cc

    Output Operation::output(int32_t i) const {
      CHECK_NOTNULL(node_);
      CHECK_GE(i, 0);
      CHECK_LT(i, node_->num_outputs());
      return Output(node_, i);
    }
    
    uint64 Operation::hash(int32_t index) const {
      return ::tensorflow::Hash64(reinterpret_cast<const char*>(&node_),
                                  sizeof(Node*), index);
    }
    
    Operation::Inputs Operation::GetInputs(Node* node) {
      Operation::Inputs inputs;
      if (node != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    		PathPrepend: "/proxy/node/node1:10250",
    	}
    	testTransport2 := &Transport{
    		Scheme:      "https",
    		Host:        "foo.com",
    		PathPrepend: "/proxy/node/node1:8080",
    	}
    	emptyHostTransport := &Transport{
    		Scheme:      "https",
    		PathPrepend: "/proxy/node/node1:10250",
    	}
    	emptySchemeTransport := &Transport{
    		Host:        "foo.com",
    		PathPrepend: "/proxy/node/node1:10250",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top