Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 989 for child6 (0.09 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    //	NewRootObjectFunc().Index().Child("foo") == [{"foo": x}]
    //	NewRootObjectFunc().Index().Child("foo").Child("bar") == [{"foo": {"bar":x}}]
    //	NewRootObjectFunc().Index().Child("foo").Child("bar").Index() == [{"foo": {"bar":[x]}}]
    //
    // and:
    //
    //	NewRootObjectFunc(), then acc(x) == x
    //	NewRootObjectFunc().Index(), then acc([x]) == x
    //	NewRootObjectFunc().Index().Child("foo"), then acc([{"foo": x}]) == x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

                addedNodes.add(node)
            }
        }
    
        String selectedChildPath
        /**
         * The child, if any, which has a common prefix with the selected path.
         */
        FileSystemNode selectedChild
    
        abstract protected NODE createInitialRootNode(ChildMap<CHILD> children);
    
        abstract protected CHILD mockChild()
    
        void setupTest(VirtualFileSystemTestSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMap.java

                RESULT handleAsAncestorOfChild(VfsRelativePath targetPath, String childPath, T child);
                RESULT handleExactMatchWithChild(VfsRelativePath targetPath, String childPath, T child);
                RESULT handleSiblingOfChild(VfsRelativePath targetPath, String childPath, T child, int commonPrefixLength);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            for (ClassNode child : classNode.getChildren()) {
                writeLibraryAccessorClass(child, deprecated);
                writeLibrarySubClasses(child, deprecated);
            }
        }
    
        private void writeVersionSubClasses(ClassNode classNode) throws IOException {
            for (ClassNode child : classNode.getChildren()) {
                writeVersionAccessorClass(child);
                writeVersionSubClasses(child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractInvalidateChildHandler.java

            Optional<RESULT> invalidatedChild = handler.handleAsDescendantOfChild(pathInChild, child);
            return invalidatedChild
                .map(this::withReplacedChild)
                .orElseGet(this::withRemovedChild);
        }
    
        @Override
        public ChildMap<RESULT> handleAsAncestorOfChild(String childPath, T child) {
            handler.handleAsAncestorOfChild(childPath, child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            configureRoot.parent == null
            configureRoot.child("Configure project :a")
            configureRoot.child("Download ${modules.projectB.pom.uri}").assertIsDownload(modules.projectB.pom)
            configureRoot.child("Download ${modules.projectB.artifact.uri}").assertIsDownload(modules.projectB.artifact)
            configureRoot.child("Download ${modules.projectC.rootMetaData.uri}").assertIsDownload(modules.projectC.rootMetaData)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/apis/storagemigration/validation/validation.go

    	// status is set and is an accepted value
    	if !validConditionStatuses.Has(string(condition.Status)) {
    		allErrs = append(allErrs, field.NotSupported(fldPath.Child("status"), condition.Status, validConditionStatuses.List()))
    	}
    
    	if condition.LastUpdateTime.IsZero() {
    		allErrs = append(allErrs, field.Required(fldPath.Child("lastTransitionTime"), "must be set"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    	allErrs := field.ErrorList{}
    	if transport == nil {
    		allErrs = append(allErrs, field.Required(
    			fldPath.Child("transport"),
    			"transport must be set for HTTPConnect"))
    		return allErrs
    	}
    
    	if transport.TCP != nil && transport.UDS != nil {
    		allErrs = append(allErrs, field.Invalid(
    			fldPath.Child("tcp"),
    			transport.TCP,
    			"TCP and UDS cannot both be set"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. pkg/api/persistentvolume/util.go

    	}
    	if pvSpec.PhotonPersistentDisk != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.11, non-functional in v1.16+", fieldPath.Child("spec", "photonPersistentDisk")))
    	}
    	if pvSpec.ScaleIO != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.16, non-functional in v1.22+", fieldPath.Child("spec", "scaleIO")))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 09:50:37 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    			name: "cluster-scoped bad child, namespaced good child, missing parent",
    			steps: []step{
    				// setup
    				createObjectInClient("", "v1", "pods", "ns1", makeMetadataObj(pod2ns1, pod1ns1)),     // good child
    				createObjectInClient("", "v1", "nodes", "", makeMetadataObj(node1, pod1nonamespace)), // bad child
    
    				// 2,3: observe bad child
    				processEvent(makeAddEvent(node1, pod1nonamespace)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top