Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 620 for devnode (0.1 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

            childSnapshot.type == FileType.Missing
            childSnapshot.absolutePath == childAbsolutePath.absolutePath
        }
    
        def "getNode at child is missing"() {
            def childAbsolutePath = childAbsolutePath("some/child")
    
            when:
            FileSystemLocationSnapshot childSnapshot = initialRoot.getNode(childAbsolutePath, CASE_SENSITIVE).get() as FileSystemLocationSnapshot
            then:
            childSnapshot.type == FileType.Missing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/roundtrip_test.go

    		if len(modePairs) == 0 {
    			// Default is all modes to all modes.
    			modePairs = []modePair{}
    			for _, encMode := range allEncModes {
    				for _, decMode := range allDecModes {
    					modePairs = append(modePairs, modePair{enc: encMode, dec: decMode})
    				}
    			}
    		}
    
    		for _, modePair := range modePairs {
    			encModeName, ok := encModeNames[modePair.enc]
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 21:48:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/StandardMutableGraph.java

     * graphs. Instances of this class should be constructed with {@link GraphBuilder}.
     *
     * <p>Time complexities for mutation methods are all O(1) except for {@code removeNode(N node)},
     * which is in O(d_node) where d_node is the degree of {@code node}.
     *
     * @author James Sexton
     * @param <N> Node parameter type
     */
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    			newNode:         newNode(false),
    			createError:     alreadyExists,
    			existingNode:    newNode(true),
    			expectedResult:  true,
    			expectedActions: 3,
    			testSavedNode:   true,
    			savedNodeIndex:  2,
    			savedNodeCMAD:   false,
    		},
    		{
    			name:            "success case - existing node - CMAD enabled",
    			newNode:         newNode(true),
    			createError:     alreadyExists,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. pkg/controller/tainteviction/taint_eviction.go

    func (tc *Controller) NodeUpdated(oldNode *v1.Node, newNode *v1.Node) {
    	nodeName := ""
    	oldTaints := []v1.Taint{}
    	if oldNode != nil {
    		nodeName = oldNode.Name
    		oldTaints = getNoExecuteTaints(oldNode.Spec.Taints)
    	}
    
    	newTaints := []v1.Taint{}
    	if newNode != nil {
    		nodeName = newNode.Name
    		newTaints = getNoExecuteTaints(newNode.Spec.Taints)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/poset.go

    			po.upush(undoSetChl, i1, i1l)
    		}
    	}
    }
    
    // newnode allocates a new node bound to SSA value n.
    // If n is nil, this is an extra node (= only used internally).
    func (po *poset) newnode(n *Value) uint32 {
    	i := po.lastidx + 1
    	po.lastidx++
    	po.nodes = append(po.nodes, posetNode{})
    	if n != nil {
    		if po.values[n.ID] != 0 {
    			panic("newnode for Value already inserted")
    		}
    		po.values[n.ID] = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBinder.java

                @Override
                public void execute(ModelBinding modelBinding) {
                    ModelNodeInternal node = modelBinding.getNode();
                    BindingPredicate predicate = modelBinding.getPredicate();
                    if (node.isAtLeast(predicate.getState())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

        }
    
        @Override
        public DefaultDeploymentDescriptor writeTo(Writer writer) {
            transformer.transform(toXmlNode(), writer);
            return this;
        }
    
        private DomNode toXmlNode() {
            DomNode root = new DomNode(nodeNameFor("application"));
            Map<String, String> rootAttributes = Cast.uncheckedCast(root.attributes());
            rootAttributes.put("version", version);
            if (!"1.3".equals(version)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. src/text/template/parse/node.go

    }
    
    // DotNode holds the special identifier '.'.
    type DotNode struct {
    	NodeType
    	Pos
    	tr *Tree
    }
    
    func (t *Tree) newDot(pos Pos) *DotNode {
    	return &DotNode{tr: t, NodeType: NodeDot, Pos: pos}
    }
    
    func (d *DotNode) Type() NodeType {
    	// Override method on embedded NodeType for API compatibility.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/util/taints/taints_test.go

    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			newNode, updated, err := AddOrUpdateTaint(tc.node, tc.taint)
    			if err != nil {
    				t.Errorf("[%s] should not raise error but got %v", tc.name, err)
    			}
    			if updated != tc.expectedUpdate {
    				t.Errorf("[%s] expected taints to not be updated", tc.name)
    			}
    			if diff := cmp.Diff(newNode.Spec.Taints, tc.expectedTaints); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
Back to top