Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,010 for nodev1 (0.47 sec)

  1. 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)
  2. src/go/printer/nodes.go

    	if px, strip := x.(*ast.ParenExpr); strip {
    		// parentheses must not be stripped if there are any
    		// unparenthesized composite literals starting with
    		// a type name
    		ast.Inspect(px.X, func(node ast.Node) bool {
    			switch x := node.(type) {
    			case *ast.ParenExpr:
    				// parentheses protect enclosed composite literals
    				return false
    			case *ast.CompositeLit:
    				if isTypeName(x.Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/EndpointPair.java

            // We already know that nodeU equals other.nodeU. Combined with the earlier statement,
            // and the transitive property of equality, this implies that nodeU equals nodeV.
            // If nodeU equals nodeV, condition1 == condition2, so checking condition1 is sufficient.
            return nodeV().equals(other.nodeV());
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/image/image_test.go

    		"example.com/kindest/node:v1.17.0@sha256:9512edae126da271b66b990b6fff768fbb7cd786c7d39e86bdf55906352fdf62": "v1.17.0",
    		"example.com/kindest/node@sha256:9512edae126da271b66b990b6fff768fbb7cd786c7d39e86bdf55906352fdf62":         "",
    
    		"example.com:3000/kindest/node":         "",
    		"example.com:3000/kindest/node:latest":  "latest",
    		"example.com:3000/kindest/node:v1.17.0": "v1.17.0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 30 13:28:45 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    COMPONENT   NODE      CURRENT   TARGET
    kubelet     node1     v1.19.2   v1.19.3
    kubelet     node2     v1.19.3   v1.19.3
    kubelet     node3     v1.19.3   v1.19.3
    
    Upgrade to the latest version in the v1.19 series:
    
    COMPONENT                 NODE      CURRENT   TARGET
    kube-apiserver            node1     v1.19.2   v1.19.3
    kube-controller-manager   node1     v1.19.2   v1.19.3
    kube-scheduler            node1     v1.19.2   v1.19.3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Obj(),
    				st.MakePod().Node("node1").Obj(),
    				st.MakePod().Node("node2").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  7. 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)
  8. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).Obj(),
    			},
    			expectedScores: []framework.NodeScore{{Name: "node1", Score: 30}, {Name: "node2", Score: 42}},
    			resources:      defaultResources,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  9. 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)
  10. android/guava/src/com/google/common/graph/EndpointPair.java

            // We already know that nodeU equals other.nodeU. Combined with the earlier statement,
            // and the transitive property of equality, this implies that nodeU equals nodeV.
            // If nodeU equals nodeV, condition1 == condition2, so checking condition1 is sufficient.
            return nodeV().equals(other.nodeV());
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 8.1K bytes
    - Viewed (0)
Back to top