Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 467 for nodeN (0.28 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    		},
    		{
    			pod: st.MakePod().Label("foo", "").Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Node("nodeA").Namespace(defaultNamespace).PodAntiAffinityExists("foo", "invalid-node-label", st.PodAntiAffinityWithRequiredReq).Obj(),
    			},
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            def rootNode = Mock(Node)
            def node1 = Mock(Node)
            def node2 = Mock(Node)
            def node3 = Mock(Node)
            def node4 = Mock(Node)
            def node5 = Mock(Node)
            def node6 = Mock(Node)
            def node7 = Mock(Node)
    
            hierarchy.recordNodeAccessingLocations(rootNode, [root.absolutePath])
            hierarchy.recordNodeAccessingLocations(node1, [root.file("location").absolutePath])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		},
    		// there are 2 regions, say regionChina(node1,node3,node4) and regionIndia(node2,node5), both regions have nodes that match the preference.
    		// But there are more nodes(actually more existing pods) in regionChina that match the preference than regionIndia.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("p2").UID("p2").Namespace(v1.NamespaceDefault).Node("node2").Req(mediumRes).Obj(),
    			},
    			// even though node1 will fail with error but node2 will still be returned as a valid nominated node.
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(largeRes).Label("error", "true").Obj(),
    				st.MakeNode().Name("node2").Capacity(largeRes).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                [
                    taskMatcher("node1", ":producer:producer", []),
                    transformStepMatcher("node2", expectedTransformId1, ["node1"]),
                    transformStepMatcher("node3", expectedTransformId2, ["node1"]),
                    taskMatcher("node4", ":consumer1:resolve", ["node2"]),
                    taskMatcher("node5", ":consumer2:resolve", ["node3"]),
                ]
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			},
    			lease:                   createNodeLease("node0", metav1.NewMicroTime(fakeNow.Time)),
    			expectedRequestCount:    1, // List
    			expectedNodes:           nil,
    			expectedPodStatusUpdate: false,
    		},
    		// Node created long time ago, without status. Node lease is missing.
    		// Expect Unknown status posted from node controller.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption_test.go

    				nodeInfos = append(nodeInfos, ni)
    			}
    			nodes, _ := nodesWherePreemptionMightHelp(nodeInfos, tt.nodesStatuses)
    			if len(tt.expected) != len(nodes) {
    				t.Errorf("number of nodes is not the same as expected. exptectd: %d, got: %d. Nodes: %v", len(tt.expected), len(nodes), nodes)
    			}
    			for _, node := range nodes {
    				name := node.Node().Name
    				if _, found := tt.expected[name]; !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    				},
    			},
    			nodes: []*v1.Node{
    				{ObjectMeta: metav1.ObjectMeta{Name: "node1", Labels: label1}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node2", Labels: label2}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node3", Labels: label3}},
    			},
    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 0}, {Name: "node3", Score: 0}},
    		},
    		{
    			// PreScore returns Skip.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            addNode(node1)
            removeNode(node1)
            bindings.add(rule)
    
            when:
            addNode(node2)
    
            then:
            bindings.getRulesWithSubject(nodeAtState("a", ModelNode.State.Finalized)) as List == [rule]
            rule.subjectBinding.boundTo == node2
        }
    
        def "can replace by-type subject when bound"() {
            def node1 = node("a", Long)
            def node2 = node("a", Long)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top