Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 553 for childrenOf (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.cc

        return read_status;
      }
    }
    
    absl::StatusOr<std::vector<std::string>> ListDirectory(
        absl::string_view directory) {
      std::vector<std::string> children;
      TF_RETURN_IF_ERROR(
          tsl::Env::Default()->GetChildren(std::string(directory), &children));
      return children;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/modelRules/ruleSourcePluginEach/groovy/build.gradle

            files.each { file ->
                assert file.size % 16 == 0
            }
        }
    }
    
    model {
        root(DirectoryItem) {
            children {
                dir(DirectoryItem) {
                    children {
                        file1(FileItem)
                        file2(FileItem) { size = 2048 }
                    }
                }
                file3(FileItem)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r25/ToolingApiEclipseModelCrossVersionSpec.groovy

    }
    """
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject aProject = rootProject.children.find { it.name == 'a'}
            EclipseProject bProject = rootProject.children.find { it.name == 'b'}
            EclipseProject cProject = rootProject.children.find { it.name == 'c'}
            then:
            aProject.classpath.find { it.file.name == "someArtifact-17.0.jar" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

            });
            return index;
        }
    
        public static <T extends FileSystemNode> Optional<MetadataSnapshot> getMetadataFromChildren(ChildMap<T> children, VfsRelativePath targetPath, CaseSensitivity caseSensitivity, Supplier<Optional<MetadataSnapshot>> noChildFoundResult) {
            return children.withNode(targetPath, caseSensitivity, new ChildMap.NodeHandler<T, Optional<MetadataSnapshot>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifierTest.groovy

        }
    
        def "children with same name are equivalent"() {
            def child1 = root.child(root.name)
            def child2 = root.child(root.name)
            def grandChild1 = child1.child(root.name)
            def grandChild2 = child2.child(root.name)
    
            expect:
            equivalent(child1, child2)
            equivalent(grandChild1, grandChild2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 05 18:43:41 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/ant/BasicAntBuilder.java

                collectorField.setAccessible(true);
                Target target = (Target) collectorField.get(this);
                Field childrenField = Target.class.getDeclaredField("children");
                childrenField.setAccessible(true);
                children = (List) childrenField.get(target);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        private void wrapContentInContainer(Document document) {
            // Wrap the page in a text container to get the margins
            Elements bodyContent = document.body().children().remove();
            document.body().prepend("<div class='container'/>");
            document.body().children().get(0).html(bodyContent.outerHtml());
        }
    
        private void addTOC(Document document) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject javaProject = rootProject.children.find{ it.name == 'java-project' }
            EclipseProject groovyProject = rootProject.children.find{ it.name == 'groovy-project' }
            EclipseProject scalaProject = rootProject.children.find{ it.name == 'scala-project' }
    
            then:
            rootProject.projectNatures.collect{ it.id } == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

            if (leafInCurrent != null) {
                returnTrueIfNoArgumentsLeft(paramIndex, leafInCurrent);
            }
            Map<ParameterMatchEntry, SignatureTree> children = current.getChildrenByMatchEntry();
            if (!children.isEmpty()) {
                boolean hasParamMatchers = children.keySet().stream().anyMatch(it -> it.kind == PARAMETER);
                if (hasParamMatchers) { // is not the receiver or vararg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

            if (leafInCurrent != null) {
                generateInvocationWhenArgsMatched(leafInCurrent, paramIndex);
            }
            Map<ParameterMatchEntry, SignatureTree> children = current.getChildrenByMatchEntry();
            if (!children.isEmpty()) {
                boolean hasParamMatchers = children.keySet().stream().anyMatch(it -> it.kind == PARAMETER);
                if (hasParamMatchers) { // is not the receiver or vararg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top