Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 553 for childrenOf (0.14 sec)

  1. docs/en/docs/js/custom.js

        if (announceFastAPI) {
            let children = [].slice.call(announceFastAPI.children);
            children = shuffle(children)
            let index = 0
            const announceRandom = () => {
                children.forEach((el, i) => {el.style.display = "none"});
                children[index].style.display = "block"
                index = (index + 1) % children.length
            }
            announceRandom()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  2. pkg/test/framework/scope.go

    	id string
    
    	parent *scope
    
    	resources []resource.Resource
    
    	closers []io.Closer
    
    	children []*scope
    
    	closeChan chan struct{}
    
    	topLevel bool
    
    	skipDump bool
    
    	// Mutex to lock changes to resources, children, and closers that can be done concurrently
    	mu sync.Mutex
    }
    
    func newScope(id string, p *scope) *scope {
    	s := &scope{
    		id:        id,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

            then:
            fixture.assertNoConfigurationCache()
    
            with(expectedProjectModel) {
                it.name == "root"
                it.tasks.size() > 0
                it.children.size() == 1
                it.children[0].children.size() == 1
            }
    
            when: "fetching with Isolated Projects"
            executer.withArguments(ENABLE_CLI)
            def projectModel = fetchModel(GradleProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    if (child != null) {
                        children.add(child);
                    }
                }
    
                message = "The build could not read " + children.size() + " project" + (children.size() == 1 ? "" : "s");
            } else {
                message = getMessage(message, exception);
            }
    
            return new ExceptionSummary(exception, message, reference, children);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. tests/associations_test.go

    	parent.Children = []*Child{&child, &child1}
    	DB.Save(&parent)
    
    	var children []*Child
    	DB.Where("parent_id = ?", parent.ID).Find(&children)
    	if len(children) != len(parent.Children) ||
    		children[0].ID != parent.Children[0].ID ||
    		children[1].ID != parent.Children[1].ID {
    		t.Errorf("circular reference children save not equal children:%v parent.Children:%v",
    			children, parent.Children)
    	}
    }
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/DefaultSection.java

        private final String description;
        private final List<Section> children = new ArrayList<>();
    
        public DefaultSection(String description) {
            this.description = description;
        }
    
        @Override
        public String getDescription() {
            return description;
        }
    
        @Override
        public List<Section> getChildren() {
            return children;
        }
    
        public void addChild(Section child) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/UnknownFileSystemNode.java

     *
     * The snapshot must have children.
     * It is created when we store missing files underneath it, so that we don’t have to query them again and again.
     */
    public class UnknownFileSystemNode extends AbstractIncompleteFileSystemNode {
    
        public UnknownFileSystemNode(ChildMap<? extends FileSystemNode> children) {
            super(children);
            assert !children.isEmpty();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/PartialDirectoryNode.java

     *
     * May include some of its children.
     */
    public class PartialDirectoryNode extends AbstractIncompleteFileSystemNode {
    
        public static PartialDirectoryNode withoutKnownChildren() {
            return new PartialDirectoryNode(EmptyChildMap.getInstance());
        }
    
        public PartialDirectoryNode(ChildMap<? extends FileSystemNode> children) {
            super(children);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/DefaultGradleProject.java

            return this;
        }
    
        public Collection<? extends DefaultGradleProject> getChildren() {
            return children;
        }
    
        public DefaultGradleProject setChildren(List<? extends DefaultGradleProject> children) {
            this.children = ImmutableList.copyOf(children); // also ensures it's serializable
            return this;
        }
    
        public String getPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

            this.parent = parent;
            this.node = (XmlNode) parent.getNode();
            this.children = this.node.getChildren();
            if (startWith != null) {
                Xpp3Dom startWithNode = (Xpp3Dom) startWith.getNode();
                for (; filteredIndex < children.size(); filteredIndex++) {
                    if (startWithNode.equals(children.get(filteredIndex))) {
                        filteredIndex++;
                        break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top