Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,918 for Nodes (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformNodeDependency.java

    public class DefaultTransformNodeDependency implements TransformNodeDependency {
        private final Collection<TransformStepNode> nodes;
    
        public DefaultTransformNodeDependency(Collection<TransformStepNode> nodes) {
            this.nodes = nodes;
        }
    
        public Collection<TransformStepNode> getNodes() {
            return nodes;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. tests/integration/ambient/untaint/main_test.go

    		}
    	}
    
    	return nil
    }
    
    // Untaint nodes if the test failed, so we restore the cluster to a usable state.
    func untaintNodes(t resource.Context) {
    	nodeC := t.Clusters().Default().
    		Kube().CoreV1().Nodes()
    	nodes, err := nodeC.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		// TODO: log
    		return
    	}
    
    	for _, node := range nodes.Items {
    		var taints []corev1.Taint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

    // Rewrites computations generated by the xla.compile() Python code into
    // XlaLaunch nodes.
    //
    // xla.compile() does two main things:
    // a) marks operators that make up an XLA computation with the attribute
    //    _xla_compile_id=XYZ, where XYZ is a unique key.
    // b) adds XlaClusterOutput nodes to represent outputs of the computation.
    //    These nodes are not marked with the _xla_compile_id attribute.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. .github/actions/people/app/main.py

        author: Union[Author, None] = None
    
    
    class Replies(BaseModel):
        nodes: List[CommentsNode]
    
    
    class DiscussionsCommentsNode(CommentsNode):
        replies: Replies
    
    
    class Comments(BaseModel):
        nodes: List[CommentsNode]
    
    
    class DiscussionsComments(BaseModel):
        nodes: List[DiscussionsCommentsNode]
    
    
    class DiscussionsNode(BaseModel):
        number: int
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/debugger/comparer.go

    	return nil
    }
    
    // CompareNodes compares actual nodes with cached nodes.
    func (c *CacheComparer) CompareNodes(nodes []*v1.Node, nodeinfos map[string]*framework.NodeInfo) (missed, redundant []string) {
    	actual := []string{}
    	for _, node := range nodes {
    		actual = append(actual, node.Name)
    	}
    
    	cached := []string{}
    	for nodeName := range nodeinfos {
    		cached = append(cached, nodeName)
    	}
    
    	return compareStrings(actual, cached)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

        void applyToSelf(ModelActionRole type, ModelAction action);
    
        /**
         * Applies an action to all linked nodes of this node that satisfy the given predicate.
         *
         * The predicate and the type returned by {@link ModelAction#getSubject()} are both used to filter the nodes,
         * such that the action is applied only to those linked nodes with a view of the requested type available that
         * also satisfy the predicate.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

        assertThat(graph.nodes()).contains(N1);
      }
    
      @Test
      public void addNode_existingNode() {
        assume().that(graphIsMutable()).isTrue();
    
        addNode(N1);
        ImmutableSet<Integer> nodes = ImmutableSet.copyOf(graph.nodes());
        assertThat(graphAsMutableGraph.addNode(N1)).isFalse();
        assertThat(graph.nodes()).containsExactlyElementsIn(nodes);
      }
    
      @Test
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy

                return cl.call()
            }
        }
    
        def format(Node... nodes) {
            format(nodes as List)
        }
    
        def formatTree(Node... nodes) {
            formatTree(nodes as List)
        }
    
        def formatTree(Iterable<? extends Node> nodes) {
            format(nodes, true)
        }
    
        def format(Iterable<? extends Node> nodes, boolean prettyPrint = false) {
            StringBuilder builder = new StringBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/initorder.go

    	// repeatedly, until there are no nodes left.
    	// In a valid Go program, those nodes always have zero dependencies (after
    	// removing all incoming dependencies), otherwise there are initialization
    	// cycles.
    	emitted := make(map[*declInfo]bool)
    	for len(pq) > 0 {
    		// get the next node
    		n := heap.Pop(&pq).(*graphNode)
    
    		if debug {
    			fmt.Printf("\t%s (src pos %d) depends on %d nodes now\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/initorder.go

    	// repeatedly, until there are no nodes left.
    	// In a valid Go program, those nodes always have zero dependencies (after
    	// removing all incoming dependencies), otherwise there are initialization
    	// cycles.
    	emitted := make(map[*declInfo]bool)
    	for len(pq) > 0 {
    		// get the next node
    		n := heap.Pop(&pq).(*graphNode)
    
    		if debug {
    			fmt.Printf("\t%s (src pos %d) depends on %d nodes now\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top