Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 135 for NodeV1 (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            def root = temporaryFolder.file("root")
            def node1 = Mock(Node)
            root.file("sub/included").createDir()
    
            hierarchy.recordNodeAccessingFileTree(node1, root.absolutePath, includes("sub/included/*"))
    
            expect:
            nodesRelatedTo(root.file("sub/included")) == ([node1] as Set)
            nodesRelatedTo(root.file("sub/included/within")) == ([node1] as Set)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction_test.go

    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    				*addToleration(testutil.NewPod("pod2", "node1"), 1, 1),
    				*addToleration(testutil.NewPod("pod3", "node1"), 1, -1),
    			},
    			oldNode: testutil.NewNode("node1"),
    			newNode: addTaintsToNode(testutil.NewNode("node1"), "testTaint1", "taint1", []int{1}),
    			expectedDeleteTimes: durationSlice{
    				{[]string{"pod1"}, 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    			expectedList: []framework.NodeScore{{Name: "node1", Score: framework.MaxNodeScore}, {Name: "node2", Score: 0}, {Name: "node3", Score: 0}},
    		},
    		// the node1(node1) that have the label {"region": "China"} (match the topology key) and that have existing pods that match the labelSelector get high score
    		// the node2(node2) that have the label {"region": "China"}, match the topology key and have the same label value with node1, get the same high score with node1
    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/noderesources/most_allocated_test.go

    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "10000", "memory": "20000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "10000", "memory": "20000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

            model.includedBuilds.size() == 1
    
            def model1 = model.includedBuilds[0]
            model1.rootDir == dir1
            model1.includedBuilds.size() == 1
    
            def model2 = model1.includedBuilds[0]
            model2.rootDir == dir2
            model2.includedBuilds.empty
    
            model.editableBuilds.size() == 2
            model.editableBuilds[0] == model1
            model.editableBuilds[1] == model2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r30/CustomModelBuildingAction.java

        @Override
        public CustomModel execute(BuildController controller) {
            CustomModel model1 = controller.getModel(CustomModel.class);
            CustomModel model2 = controller.getModel(CustomModel.class);
            assert model1.getThing() == model2.getThing();
            return model1;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	}{
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "node1-only"},
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "node1-node2-only"},
    		{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"},
    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/volumebinding/binder_test.go

    	topoMismatchClass        = "topoMismatchClass"
    
    	// nodes objects
    	node1         = makeNode("node1").withLabel(nodeLabelKey, "node1").Node
    	node2         = makeNode("node2").withLabel(nodeLabelKey, "node2").Node
    	node1NoLabels = makeNode("node1").Node
    	node1Zone1    = makeNode("node1").withLabel("topology.gke.io/zone", "us-east-1").Node
    	node1Zone2    = makeNode("node1").withLabel("topology.gke.io/zone", "us-east-2").Node
    
    	// csiNode objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolver.java

         *
         * @param node1 the first artifact declaration
         * @param node2 the second artifact declaration
         * @return the artifact declaration to use: <code>node1</code>; <code>node2</code>; or <code>null</code>if
         *         this conflict cannot be resolved
         * @since 3.0
         */
        ResolutionNode resolveConflict(ResolutionNode node1, ResolutionNode node2);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top