Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,042 for child7 (0.23 sec)

  1. pkg/apis/flowcontrol/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("priorityLevelConfiguration").Child("name"), spec.PriorityLevelConfiguration.Name, msg))
    		}
    	} else {
    		allErrs = append(allErrs, field.Required(fldPath.Child("priorityLevelConfiguration").Child("name"), "must reference a priority level"))
    	}
    	for i, rule := range spec.Rules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/ValuedVfsHierarchyTest.groovy

            "some/location/intermediate/child"              | ['intermediate/child': [1]]
            "some/location/intermediate/child/sub1/leaf1"   | ['intermediate/child/sub1/leaf1': [1], 'sub1/leaf1': [4, 3]]
            "some/location/intermediate/child/sub1/leaf2"   | ['intermediate/child/sub1/leaf2': [1], 'sub1/leaf2': [4, 3]]
            "some/location/intermediate/child/sub3/leaf"    | ['sub3/leaf': [4, 3], 'intermediate/child/sub3/leaf': [1]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:21:57 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation.go

    					allErrs = append(allErrs, field.Invalid(portPath.Child("endPort"), port.Port.IntVal, "must be greater than or equal to `port`"))
    				}
    				for _, msg := range validation.IsValidPortNum(int(*port.EndPort)) {
    					allErrs = append(allErrs, field.Invalid(portPath.Child("endPort"), *port.EndPort, msg))
    				}
    			}
    		} else {
    			if port.EndPort != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/context/context.go

    // Context (the parent) and return a derived Context (the child) and a
    // [CancelFunc]. Calling the CancelFunc cancels the child and its
    // children, removes the parent's reference to the child, and stops
    // any associated timers. Failing to call the CancelFunc leaks the
    // child and its children until the parent is canceled or the timer
    // fires. The go vet tool checks that CancelFuncs are used on all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/ValuedVfsHierarchy.java

                    child.visitValuesRelatedTo(pathInChild, visitor);
                    return "";
                }
    
                @Override
                public String handleAsAncestorOfChild(String childPathFromAncestor, ValuedVfsHierarchy<T> child) {
                    visitor.visitChildren(
                        child.getValues(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:23:29 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. pkg/api/pod/warnings.go

    		}
    		if v.CephFS != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "volumes").Index(i).Child("cephfs")))
    		}
    		if v.RBD != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "volumes").Index(i).Child("rbd")))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    	if b.child == nil {
    		return
    	}
    	b.child.flushChild()
    	child := b.child
    	b.child = nil
    
    	if child.err != nil {
    		b.err = child.err
    		return
    	}
    
    	length := len(child.result) - child.pendingLenLen - child.offset
    
    	if length < 0 {
    		panic("cryptobyte: internal error") // result unexpectedly shrunk
    	}
    
    	if child.pendingIsASN1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << onlyDirectChildren(NO_COMMON_PREFIX)
        }
    
        def "invalidate a single child creates a partial directory node without the child (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultComponentSpecIdentifierTest.groovy

        }
    
        def "construct child"() {
            expect:
            def id = new DefaultComponentSpecIdentifier(":project", "name")
            def child = id.child("child")
            def grandchild = child.child("grandchild")
    
            child.parent == id
            child.path == Path.path("name:child")
            child.projectScopedName == "nameChild"
    
            grandchild.parent == child
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/FragmentedOperation.java

            for (ContinuousOperation child : children) {
                result += child.getElapsedTime();
            }
            return result;
        }
    
        @Override
        public String getDescription() {
            return description;
        }
    
        public ContinuousOperation start(long start) {
            ContinuousOperation child = new ContinuousOperation("<child>");
            child.setStart(start);
            children.add(child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top