Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 189 for node2 (0.21 sec)

  1. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "shared-all"},
    
    		{User: node2, Decision: authorizer.DecisionNoOpinion, Secret: "node1-only"},
    		{User: node2, Decision: authorizer.DecisionAllow, Secret: "node1-node2-only"},
    		{User: node2, Decision: authorizer.DecisionAllow, Secret: "shared-all"},
    
    		{User: node3, Decision: authorizer.DecisionNoOpinion, Secret: "node1-only"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. pkg/scheduler/testing/framework/fake_extender.go

    		} else if status.Code() == framework.Unschedulable {
    			failedNodesMap[node.Node().Name] = fmt.Sprintf("FakeExtender: node %q failed", node.Node().Name)
    		} else if status.Code() == framework.UnschedulableAndUnresolvable {
    			failedAndUnresolvableMap[node.Node().Name] = fmt.Sprintf("FakeExtender: node %q failed and unresolvable", node.Node().Name)
    		} else {
    			return nil, nil, nil, status.AsError()
    		}
    	}
    
    	f.FilteredNodes = filtered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/volume/util/util_test.go

    											Values: []string{
    												"node1",
    												"node2",
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedNodeNames: []string{
    				"node1",
    				"node2",
    			},
    		},
    		{
    			name: "PV node affinity required multiple match expressions with multiple nodes",
    			pv: &v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/graph_test.go

    	}
    	expectGraph := func(expect map[string][]string) {
    		t.Helper()
    		actual := map[string][]string{}
    		for _, node := range g.graph.Nodes() {
    			sortedTo := []string{}
    			for _, to := range g.graph.From(node) {
    				sortedTo = append(sortedTo, toString(to.ID()))
    			}
    			sort.Strings(sortedTo)
    			actual[toString(node.ID())] = sortedTo
    		}
    		if !reflect.DeepEqual(expect, actual) {
    			e, _ := json.MarshalIndent(expect, "", "  ")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

        private void recordNodeExecutionStarted(Node node) {
            runningNodes.add(node);
        }
    
        private void recordNodeCompleted(Node node) {
            LOGGER.debug("Node {} completed, executed: {}", node, node.isExecuted());
            waitingToStartNodes.remove(node);
            if (continueOnFailure && !node.allDependenciesComplete()) {
                // Wait for any dependencies of this node that have not started yet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  6. 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)
  7. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	}
    
    	if f.componentVersion == "multiVersion" {
    		return map[string][]string{
    			"node1": {"node1"},
    			"node2": {"node2"},
    		}, nil
    	}
    
    	return map[string][]string{
    		f.componentVersion: {"node1"},
    	}, nil
    }
    
    const fakeCurrentEtcdVersion = "3.1.12"
    
    func getEtcdVersion(v *versionutil.Version) string {
    	etcdVer, _, _ := constants.EtcdSupportedVersion(constants.SupportedEtcdVersion, v.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    }
    
    // Populates data struct with a single node no volume.
    // Calls AddPod() with the same node and new pod/volume.
    // Verifies node/volume exists.
    // Calls AddPod() with the same node and volume different pod.
    // Verifies the same node/volume exists, and 1 volumes to attach.
    func Test_AddPod_Positive_NewPodNodeExistsVolumeExists(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            then:
            executes(c, finalizer3)
        }
    
        def "required nodes added to the graph are executed in dependency order"() {
            given:
            def node1 = requiredNode()
            def node2 = requiredNode(node1)
            def node3 = requiredNode(node2)
            executionPlan.setScheduledWork(scheduledWork(node3, node1, node2))
    
            when:
            populateGraph()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
Back to top