Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 553 for childrenOf (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    	// a map or a list, respectively.
    	//
    	// The list of children may be incomplete depending upon if the internal
    	// logic of kube-openapi's SchemaValidator short-circuited before
    	// reaching all of the children.
    	//
    	// It should be expected to have an entry for either all of the children, or
    	// none of them.
    	children map[interface{}]*CorrelatedObject
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            resolveArtifactB.children == [downloadBArtifact]
            resolveArtifactC.children == [downloadCArtifact]
            resolveArtifactD.children == [downloadDArtifact]
        }
    
        @Issue("gradle/gradle#1641")
        @TargetGradleVersion(">=3.5 <4.0")
        def "generates download events during maven publish"() {
            given:
            toolingApi.requireIsolatedUserHome()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/TreeTraverser.java

        checkNotNull(nodeToChildrenFunction);
        return new TreeTraverser<T>() {
          @Override
          public Iterable<T> children(T root) {
            return nodeToChildrenFunction.apply(root);
          }
        };
      }
    
      /** Returns the children of the specified node. Must not contain null. */
      public abstract Iterable<T> children(T root);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/TreeTraverserTest.java

        final List<Tree> children;
    
        public Tree(char value, Tree... children) {
          super(value);
          this.children = Arrays.asList(children);
        }
      }
    
      private static final TreeTraverser<Tree> ADAPTER =
          new TreeTraverser<Tree>() {
            @Override
            public Iterable<Tree> children(Tree node) {
              return node.children;
            }
          };
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                List<ProjectReportModel> children,
                List<SoftwareTypeImplementation<?>> softwareTypes,
                boolean isRootProject,
                String tasksTaskPath,
                String rootProjectProjectsTaskPath,
                List<Path> includedBuildIdentityPaths
            ) {
                this.project = project;
                this.children = children;
                this.softwareTypes = softwareTypes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/DefaultDependentBinariesResolvedResult.java

            this.identifier = identifier;
            this.projectScopeName = projectScopeName;
            this.buildable = buildable;
            this.testSuite = testSuite;
            this.children = children != null ? children : Collections.<DependentBinariesResolvedResult>emptyList();
        }
    
        @Override
        public LibraryBinaryIdentifier getId() {
            return identifier;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ArtifactDownloadProgressCrossVersionSpec.groovy

            resolveB.children == [downloadBMetadata]
            resolveD.children == [downloadDMavenMetadata, downloadDPom]
    
            resolveCompileFiles.parent == applyRootBuildScript
            resolveCompileFiles.children.size() == 3 // resolution happens in parallel, so the operations may appear in any order
            resolveCompileFiles.children.contains(resolveArtifactB)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 08:38:35 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/visit.go

    //		... processing BEFORE visiting children ...
    //		if ... should visit children ... {
    //			ir.DoChildren(x, do)
    //		}
    //		... processing AFTER visiting children ...
    //		return false
    //	}
    //	do(root)
    //
    // The Visit function illustrates a further simplification of the pattern,
    // only processing before visiting children and never stopping:
    //
    //	func Visit(n ir.Node, visit func(ir.Node)) {
    //		if n == nil {
    //			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

    class UnknownFileSystemNodeTest extends AbstractIncompleteFileSystemNodeTest<UnknownFileSystemNode> {
    
        @Override
        protected UnknownFileSystemNode createInitialRootNode(ChildMap<FileSystemNode> children) {
            return new UnknownFileSystemNode(children)
        }
    
        @Override
        protected boolean isSameNodeType(FileSystemNode node) {
            return node instanceof UnknownFileSystemNode
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PartialDirectoryNodeTest.groovy

    class PartialDirectoryNodeTest extends AbstractIncompleteFileSystemNodeTest<PartialDirectoryNode> {
    
        @Override
        protected PartialDirectoryNode createInitialRootNode(ChildMap<FileSystemNode> children) {
            return new PartialDirectoryNode(children)
        }
    
        @Override
        protected boolean isSameNodeType(FileSystemNode node) {
            node instanceof PartialDirectoryNode
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top