Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for node_ (0.04 sec)

  1. pkg/scheduler/framework/types_test.go

    					"node1": NewStatus(Unschedulable, "Node(s) failed Filter plugin FalseFilter-1"),
    					"node2": NewStatus(Unschedulable, "Node(s) failed Filter plugin FalseFilter-1"),
    					"node3": NewStatus(Unschedulable, "Node(s) failed Filter plugin FalseFilter-1"),
    				},
    				PostFilterMsg: "Error running PostFilter plugin FailedPostFilter",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         */
        @Nullable
        Dependency getDependency();
    
        /**
         * Gets the child nodes of this node.
         *
         * @return the child nodes of this node, never {@code null}
         */
        @Nonnull
        List<Node> getChildren();
    
        /**
         * @return repositories of this node
         */
        @Nonnull
        List<RemoteRepository> getRemoteRepositories();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	expectedNominatedPods := &nominator{
    		nominatedPodToNode: map[types.UID]string{
    			medPriorityPodInfo.Pod.UID:   "node1",
    			highPriorityPodInfo.Pod.UID:  "node2",
    			unschedulablePodInfo.Pod.UID: "node5",
    		},
    		nominatedPods: map[string][]*framework.PodInfo{
    			"node1": {medPriorityPodInfo},
    			"node2": {highPriorityPodInfo},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/range_allocator_test.go

    }
    
    func TestOccupyPreExistingCIDR(t *testing.T) {
    	// all tests operate on a single node
    	testCases := []testCase{
    		{
    			description: "success, single stack no node allocation",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node0",
    						},
    					},
    				},
    				Clientset: fake.NewSimpleClientset(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    			Key:    "kubernetes.io/hostname",
    			Values: []string{"node1", "node1"},
    		}},
    	}}
    
    	topologyMultiValues := []api.TopologySelectorTerm{{
    		MatchLabelExpressions: []api.TopologySelectorLabelRequirement{{
    			Key:    "kubernetes.io/hostname",
    			Values: []string{"node1", "node2"},
    		}},
    	}}
    
    	topologyEmptyMatchLabelExpressions := []api.TopologySelectorTerm{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_test.go

    	client := clientsetfake.NewSimpleClientset(
    		// node1 initially has no IP address.
    		makeNodeWithAddress("node1", ""),
    
    		// node2 initially has an invalid IP address.
    		makeNodeWithAddress("node2", "invalid-ip"),
    
    		// node3 initially does not exist.
    	)
    
    	for i := range chans {
    		chans[i] = make(chan error)
    		ch := chans[i]
    		nodeName := fmt.Sprintf("node%d", i+1)
    		expectIP := fmt.Sprintf("192.168.0.%d", i+1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	return &corev1.Node{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Node",
    			APIVersion: "v1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   name,
    			Labels: labels,
    		},
    	}
    }
    
    func addNodes(t *testing.T, controller *FakeController, nodes ...*corev1.Node) {
    	for _, node := range nodes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/daemon/daemon_controller_test.go

    			newNode:         newNode("node1", nil),
    			ds:              newDaemonSet("ds"),
    			shouldEnqueue:   true,
    			expectedCreates: func() int { return 0 },
    		},
    		{
    			test:    "Node Allocatable changed",
    			oldNode: newNode("node1", nil),
    			newNode: func() *v1.Node {
    				node := newNode("node1", nil)
    				node.Status.Allocatable = allocatableResources("200M", "200m")
    				return node
    			}(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. 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)
Back to top