Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 553 for childrenOf (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    		children = append(children, tok(n.Type.Func, len("func")))
    		if n.Recv != nil {
    			children = append(children, n.Recv)
    		}
    		children = append(children, n.Name)
    		if tparams := n.Type.TypeParams; tparams != nil {
    			children = append(children, tparams)
    		}
    		if n.Type.Params != nil {
    			children = append(children, n.Type.Params)
    		}
    		if n.Type.Results != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      // at most two children for the prefix to detect if a directory is empty.
      auto gcs_file = static_cast<GCSFile*>(filesystem->plugin_filesystem);
      auto childrens = GetChildrenBounded(gcs_file, path, 2, true, true, status);
      if (TF_GetCode(status) != TF_OK) return;
      if (childrens.size() > 1 || (childrens.size() == 1 && !childrens[0].empty()))
        return TF_SetStatus(status, TF_FAILED_PRECONDITION,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            PendingOperation pending = pendings.remove(finish.id);
                            assert pending != null;
    
                            List<BuildOperationRecord> children = childrens.remove(finish.id);
                            assert children != null;
    
                            SerializedOperationStart start = pending.start;
    
                            Map<String, ?> detailsMap = uncheckedCast(start.details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            children.collectMany { child ->
                def childIndex = children.indexOf(child)
                [
                    new CaseSensitivityTestSpec(children, child, childIndex),
                    new CaseSensitivityTestSpec(children, "$child/a/something", childIndex),
                    new CaseSensitivityTestSpec(children, "$child/A/something", childIndex),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            barInsight[2].children[0].isLeaf == false
            barInsight[2].children[0].alreadyRendered == false
            barInsight[2].children[0].children.size() == 1
            barInsight[2].children[0].children[0].name == 'compile'
            barInsight[2].children[0].children[0].resolvable == 'RESOLVED'
            barInsight[2].children[0].children[0].hasConflict == false
            barInsight[2].children[0].children[0].isLeaf == true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

         */
        FileSystemNode selectedChild
    
        abstract protected NODE createInitialRootNode(ChildMap<CHILD> children);
    
        abstract protected CHILD mockChild()
    
        void setupTest(VirtualFileSystemTestSpec spec) {
            this.children = createChildren(spec.childPaths)
            this.initialRoot = createInitialRootNode(children)
            this.searchedPath = spec.searchedPath
            this.selectedChildPath = spec.selectedChildPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaProject.java

        public DefaultIdeaProject setChildren(Collection<? extends DefaultIdeaModule> children) {
            this.children.clear();
            this.children.addAll(children);
            return this;
        }
    
        public Collection<DefaultIdeaModule> getChildren() {
            return children;
        }
    
        public Collection<DefaultIdeaModule> getModules() {
            return children;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseSensitiveVfsRelativePathTest.groovy

            children << CHILDREN_LISTS
        }
    
        def "children names #children are sorted the same with path sensitive and name only comparison"() {
            def nameSorted = children.toSorted(PathUtil.&compareFileNames)
            def caseSensitiveSorted = children.toSorted(getPathComparator(CASE_SENSITIVE))
    
            expect:
            nameSorted == caseSensitiveSorted
    
            where:
            children << [
                ["bAdA", "BaDb"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            assert rootProject.children.size() == 3 // All projects are created when storing
            with(rootProject.children.first() as Map<String, Object>) {
                assert name == 'a'
                assert path == ':a'
                assert projectDir == file('a').absolutePath
                assert buildFile == file('a/build.gradle').absolutePath
                with(children.first()) {
                    assert name == 'b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. test/torture.go

    func ChainAssertIndex(u *U) J {
    	return u.
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0].(*U).
    		Children[0]
    }
    
    type UArr struct {
    	Children [2]J
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 01 07:20:51 UTC 2014
    - 7.7K bytes
    - Viewed (0)
Back to top