Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 189 for nodeX (0.09 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

                'cglib:cglib:3.2.5'()
                'cglib:cglib-nodep:3.2.5' {
                    variant("runtime") {
                        capability('cglib', 'cglib-nodep', '3.2.5')
                        capability('cglib', 'cglib', '3.2.5')
                    }
                }
            }
    
            buildFile << """
                dependencies {
                   conf "cglib:cglib-nodep:3.2.5"
                   conf "cglib:cglib:3.2.5"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/provision_test.go

    				func(ctrl *PersistentVolumeController, reactor *pvtesting.VolumeReactor) {
    					nodesIndexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{})
    					node := &v1.Node{ObjectMeta: metav1.ObjectMeta{Name: "node1"}}
    					nodesIndexer.Add(node)
    					ctrl.NodeLister = corelisters.NewNodeLister(nodesIndexer)
    				}),
    		},
    		{
    			// volume provision for PVC that scheduled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    				0,
    			},
    		},
    		{
    			name: "local volumes with close capacity are preferred",
    			pod:  makePod("pod-a").withPVCVolume("pvc-a", "").Pod,
    			nodes: []*v1.Node{
    				makeNode("node-a").Node,
    				makeNode("node-b").Node,
    				makeNode("node-c").Node,
    			},
    			pvcs: []*v1.PersistentVolumeClaim{
    				makePVC("pvc-a", waitSC.Name).withRequestStorage(resource.MustParse("50Gi")).PersistentVolumeClaim,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            for (NodeState node : nodes) {
                if (node.isSelected()) {
                    consumer.accept(node);
                }
            }
        }
    
        @Override
        public List<ComponentState> getDependents() {
            List<ComponentState> incoming = Lists.newArrayListWithCapacity(nodes.size());
            for (NodeState node : nodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_util.cc

      // Gather all outside compilation to outside compilation nodes.
      std::vector<Node*> placeholder_nodes;
      for (Node* n : g->nodes()) {
        if (n->type_string() == "Placeholder" &&
            HasNodeAttr(n->def(), kOutsideCompilationOriginalNodeAttrName)) {
          placeholder_nodes.push_back(n);
        }
      }
    
      // Remove the placeholder nodes, and reconnect original edge.
      auto node_name_index = g->BuildNodeNameIndex();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

      node_name_image = g->BuildNodeNameIndex();
    
      // Verify step 1: add key placeholder node.
      Node *key_placeholder = node_name_image["cluster_key_placeholder"];
      EXPECT_NE(key_placeholder, nullptr);
      // Verify step 2: replace _Arg nodes with XlaRecvAtHost.
      for (Node *n : g->nodes()) {
        EXPECT_NE(n->type_string(), "_Arg");
      }
      Node *recv_at_host = node_name_image["outside_compilation_cluster__0_recv"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// DeleteVolumeNode removes the given volume and node from the underlying
    	// store indicating the specified volume is no longer attached to the
    	// specified node.
    	// If the volume/node combo does not exist, this is a no-op.
    	// If after deleting the node, the specified volume contains no other child
    	// nodes, the volume is also deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    				{
    					Name:         "nodes",
    					SingularName: "node",
    					Kind:         "Node",
    					ShortNames:   []string{"no"},
    					Verbs:        []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    			},
    			wantAPIResourceDiscovery: []apidiscoveryv2.APIResourceDiscovery{
    				{
    					Resource:         "nodes",
    					SingularResource: "node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    		}
    	}
    	parts = append(parts, name[last:])
    
    	// Discover the nodes and construct the MIB OID.
    	for partno, part := range parts {
    		nodes, err := sysctlNodes(mib)
    		if err != nil {
    			return nil, err
    		}
    		for _, node := range nodes {
    			n := make([]byte, 0)
    			for i := range node.Name {
    				if node.Name[i] != 0 {
    					n = append(n, byte(node.Name[i]))
    				}
    			}
    			if string(n) == part {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    	// return a PreFilterResult to influence which nodes to evaluate downstream. This is useful
    	// for cases where it is possible to determine the subset of nodes to process in O(1) time.
    	// When PreFilterResult filters out some Nodes, the framework considers Nodes that are filtered out as getting "UnschedulableAndUnresolvable".
    	// i.e., those Nodes will be out of the candidates of the preemption.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top