Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 60 for nodeIPs (0.23 sec)

  1. plugin/pkg/admission/noderestriction/admission_test.go

    		},
    		{
    			name:       "disallowed create another node's lease - feature enabled",
    			attributes: admission.NewAttributesRecord(leaseWrongName, nil, leaseKind, leaseWrongName.Namespace, leaseWrongName.Name, leaseResource, "", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "forbidden: ",
    		},
    		{
    			name:       "disallowed update another node's lease - feature enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	logger.V(5).Info("remembering potential nodes", "pod", klog.KObj(pod), "potentialnodes", klog.KObjSlice(nodes))
    	numNodes := len(nodes)
    	if numNodes > resourcev1alpha2.PodSchedulingNodeListMaxSize {
    		numNodes = resourcev1alpha2.PodSchedulingNodeListMaxSize
    	}
    	potentialNodes := make([]string, 0, numNodes)
    	if numNodes == len(nodes) {
    		// Copy all node names.
    		for _, node := range nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	}
    
    	return nil
    }
    
    // manage manages the scheduling and running of Pods of ds on nodes.
    // After figuring out which nodes should run a Pod of ds but not yet running one and
    // which nodes should not run a Pod of ds but currently running one, it calls function
    // syncNodes with a list of pods to remove and a list of nodes to run a Pod of ds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    for (NodeState sourceNode : targetComponent.getNodes()) {
                        if (sourceNode.ownStrictVersionConstraints == null) {
                            // node's dependencies were not yet visited
                            sourceNode.collectOwnStrictVersions();
                        }
                        if (singleStrictVersionConstraints.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    		cpu       *resource.Quantity
    	}
    
    	testCases := []struct {
    		name                 string
    		nodes                []nodeInfo
    		topologyCacheEnabled bool
    		endpointZoneInfo     map[string]topologycache.EndpointZoneInfo
    		expectedQueueLen     int
    	}{{
    		name:                 "empty",
    		nodes:                []nodeInfo{},
    		topologyCacheEnabled: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    func (f *frameworkImpl) runPreScorePlugin(ctx context.Context, pl framework.PreScorePlugin, state *framework.CycleState, pod *v1.Pod, nodes []*framework.NodeInfo) *framework.Status {
    	if !state.ShouldRecordPluginMetrics() {
    		return pl.PreScore(ctx, state, pod, nodes)
    	}
    	startTime := time.Now()
    	status := pl.PreScore(ctx, state, pod, nodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        Node node(Map<String, ?> options = [:], String name) {
            def dependencies = nodes(options.dependsOn)
            def preExecute = nodes(options.preNodes)
            def postExecute = nodes(options.postNodes)
            def node = new TestNode(name, dependencies, preExecute, postExecute, options.failure)
            return node
        }
    
        List<Node> nodes(Object value) {
            if (value == null) {
                return []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// The total number of nodes that should be running the daemon
    	// pod (including nodes correctly running the daemon pod).
    	// More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
    	DesiredNumberScheduled int32 `json:"desiredNumberScheduled" protobuf:"varint,3,opt,name=desiredNumberScheduled"`
    
    	// numberReady is the number of nodes that should be running the daemon pod and have one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   name,
    			Labels: labels,
    		},
    	}
    }
    
    func addNodes(t *testing.T, controller *FakeController, nodes ...*corev1.Node) {
    	for _, node := range nodes {
    		clienttest.Wrap(t, controller.nodes).CreateOrUpdate(node)
    		waitForNode(t, controller, node.Name)
    	}
    }
    
    func TestEndpointUpdate(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		// We can run in parallel because logging is per-test.
    		tc := tc
    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    			nodes := tc.nodes
    			if nodes == nil {
    				nodes = []*v1.Node{workerNode}
    			}
    			testCtx := setup(t, nodes, tc.claims, tc.classes, tc.schedulings, tc.objs)
    			testCtx.p.enabled = !tc.disable
    			initialObjects := testCtx.listAll(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top