Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for nodeIPs (0.31 sec)

  1. src/cmd/internal/obj/x86/seh.go

    	// Fow now we only support operations which are encoded
    	// using a single 2-byte node, so the number of nodes
    	// is the number of operations.
    	nodes := uint8(2)
    	buf := newsehbuf(ctxt, nodes)
    	buf.write8(flags | 1)            // Flags + version
    	buf.write8(uint8(movbp.Link.Pc)) // Size of prolog
    	buf.write8(nodes)                // Count of nodes
    	buf.write8(SEH_REG_BP)           // FP register
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/extender.go

    	// expected to be a subset of the supplied list.
    	// The failedNodes and failedAndUnresolvableNodes optionally contains the list
    	// of failed nodes and failure reasons, except nodes in the latter are
    	// unresolvable.
    	Filter(pod *v1.Pod, nodes []*NodeInfo) (filteredNodes []*NodeInfo, failedNodesMap extenderv1.FailedNodesMap, failedAndUnresolvable extenderv1.FailedNodesMap, err error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTransformNodeIdBuildOperationIntegrationTest.groovy

        }
    
        private Map<String, Long> getUniqueIdsPerColor() {
            transformStepIdentities.collectEntries { color, identities ->
                def nodeIds = (identities*.transformStepNodeId as Set<Long>)
                [(color): Iterables.getOnlyElement(nodeIds)]
            }
        }
    
        private Map<String, List<Map<String, ?>>> getTransformStepIdentities() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNodeFactory.java

        }
    
        public Set<Task> getTasks() {
            return nodes.keySet();
        }
    
        @Nullable
        public TaskNode getNode(Task task) {
            return nodes.get(task);
        }
    
        public TaskNode getOrCreateNode(Task task) {
            TaskNode node = nodes.get(task);
            if (node == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/versiongetter_test.go

    		{
    			name:    "node list is empty",
    			nodes:   &v1.NodeList{},
    			want:    map[string][]string{},
    			wantErr: false,
    		},
    	}
    	for _, tt := range tests {
    		client := clientsetfake.NewSimpleClientset()
    		t.Run(tt.name, func(t *testing.T) {
    			for _, node := range tt.nodes.Items {
    				err := client.Tracker().Create(schema.GroupVersionResource{Version: "v1", Resource: "nodes"}, &node, "")
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    					label.TopologySubzone.Name: loc.SubZone,
    				}},
    				Spec:   v1.NodeSpec{},
    				Status: v1.NodeStatus{},
    			})
    			nodes := kclient.New[*v1.Node](fc)
    			fc.RunAndWait(test.NewStop(t))
    			cc := &Controller{
    				nodes:       nodes,
    				meshWatcher: mesh.NewFixedWatcher(mesh.DefaultMeshConfig()),
    				networkManager: &networkManager{
    					clusterID: c.ctl.cluster,
    					network:   c.ctl.network,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pkg/controller/ttl/ttl_controller.go

    	"k8s.io/kubernetes/pkg/controller"
    
    	"k8s.io/klog/v2"
    )
    
    // Controller sets ttl annotations on nodes, based on cluster size.
    type Controller struct {
    	kubeClient clientset.Interface
    
    	// nodeStore is a local cache of nodes.
    	nodeStore listers.NodeLister
    
    	// Nodes that need to be synced.
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Returns true if all underlying informers are synced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/compress/bzip2/huffman.go

    // symbol.
    type huffmanTree struct {
    	// nodes contains all the non-leaf nodes in the tree. nodes[0] is the
    	// root of the tree and nextNode contains the index of the next element
    	// of nodes to use when the tree is being constructed.
    	nodes    []huffmanNode
    	nextNode int
    }
    
    // A huffmanNode is a node in the tree. left and right contain indexes into the
    // nodes slice of the tree. If left or right is invalidNodeValue then the child
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pkg/kubelet/server/auth.go

    // More specific verb/resource is set for the following request patterns:
    //
    //	/stats/*   => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=stats
    //	/metrics/* => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=metrics
    //	/logs/*    => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/node/v1/generated.proto

      // +optional
      optional Overhead overhead = 3;
    
      // scheduling holds the scheduling constraints to ensure that pods running
      // with this RuntimeClass are scheduled to nodes that support it.
      // If scheduling is nil, this RuntimeClass is assumed to be supported by all
      // nodes.
      // +optional
      optional Scheduling scheduling = 4;
    }
    
    // RuntimeClassList is a list of RuntimeClass objects.
    message RuntimeClassList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top