Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 194 for node_ (0.05 sec)

  1. cmd/kubeadm/app/cmd/upgrade/node.go

    	}
    
    	// Fetches the cluster configuration
    	// NB in case of control-plane node, we are reading all the info for the node; in case of NOT control-plane node
    	//    (worker node), we are not reading local API address and the CRI socket from the node object
    	initCfg, err := configutil.FetchInitConfigurationFromCluster(client, nil, "upgrade", !isControlPlaneNode, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K 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/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)
  4. 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)
  5. 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)
  6. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    }
    
    /* Concurrent operations tests */
    
    // "None" means volume, pod, and node names are all empty
    // "Volume" means volume name is set, but pod name and node name are empty
    // "Volume Pod" means volume and pod names are set, but the node name is empty
    // "Volume Node" means volume and node names are set, but the pod name is empty
    
    // The same volume, pod, and node names are used (where they are not empty).
    
    // Covered cases:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

        for (E key : keys) {
          LockGraphNode node = new LockGraphNode(getLockName(key));
          nodes.add(node);
          map.put(key, node);
        }
        // Pre-populate all allowedPriorLocks with nodes of smaller ordinal.
        for (int i = 1; i < numKeys; i++) {
          nodes.get(i).checkAcquiredLocks(Policies.THROW, nodes.subList(0, i));
        }
        // Pre-populate all disallowedPriorLocks with nodes of larger ordinal.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

        for (E key : keys) {
          LockGraphNode node = new LockGraphNode(getLockName(key));
          nodes.add(node);
          map.put(key, node);
        }
        // Pre-populate all allowedPriorLocks with nodes of smaller ordinal.
        for (int i = 1; i < numKeys; i++) {
          nodes.get(i).checkAcquiredLocks(Policies.THROW, nodes.subList(0, i));
        }
        // Pre-populate all disallowedPriorLocks with nodes of larger ordinal.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler_test.go

    		testSchedulerProfile2 = "test-scheduler-profile-2"
    		testSchedulerProfile3 = "test-scheduler-profile-3"
    	)
    
    	nodes := []runtime.Object{
    		st.MakeNode().Name("node1").UID("node1").Obj(),
    		st.MakeNode().Name("node2").UID("node2").Obj(),
    		st.MakeNode().Name("node3").UID("node3").Obj(),
    	}
    
    	cases := []struct {
    		name                        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. pkg/controller/daemon/util/daemonset_util_test.go

    			templateGeneration,
    			newPod("pod1", "node1", labels),
    			hash,
    			true,
    		},
    		{
    			"templateGeneration matches, hash doesn't",
    			templateGeneration,
    			newPod("pod1", "node1", labels),
    			hash + "123",
    			true,
    		},
    		{
    			"templateGeneration matches, no hash label, has hash",
    			templateGeneration,
    			newPod("pod1", "node1", labelsNoHash),
    			hash,
    			true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top