Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 553 for childrenOf (0.13 sec)

  1. operator/pkg/helmreconciler/common.go

    }
    
    func insertChildrenRecursive(componentName name.ComponentName, tree ComponentTree, children componentNameToListMap) {
    	tree[componentName] = make(ComponentTree)
    	for _, child := range children[componentName] {
    		insertChildrenRecursive(child, tree[componentName].(ComponentTree), children)
    	}
    }
    
    // InstallTreeString returns a string representation of the dependency tree.
    func InstallTreeString() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

     * We know everything about this snapshot, including children and Merkle hash.
     *
     * The snapshot can be a snapshot of a regular file or of a whole directory tree.
     * The file at the location is not required to exist (see {@link MissingFileSnapshot}).
     */
    public interface FileSystemLocationSnapshot extends FileSystemSnapshot, FileSystemNode, MetadataSnapshot {
    
        /**
         * The comparator of direct children of a file system location.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                    false // error?
                // no children of secondary constructs are used.
                is KtSecondaryConstructor ->
                    false
    
                // KtClass, KtObjectDeclaration, KtTypeAlias has no expression children
                is KtClassLikeDeclaration ->
                    false // has no expression children
    
                // Simple names do not have expression children
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeGradleProjectBuilder.java

            DefaultGradleProject model = buildWithoutChildren(project, isolatedModel);
            Collection<Project> children = getChildProjectsForInternalUse(project);
            List<IsolatedGradleProjectInternal> isolatedChildrenModels = getIsolatedModels(root, children, parameter);
            model.setChildren(buildChildren(root, model, parameter, children, isolatedChildrenModels));
            return model;
        }
    
        private List<DefaultGradleProject> buildChildren(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/plugins/ide/internal/tooling/DefaultGradleProjectTest.groovy

            def child21 = new DefaultGradleProject().setProjectIdentifier(new DefaultProjectIdentifier(new File("."), ":child2:child21"))
    
            root.children = [child1, child2]
            child1.children = [child11, child12]
            child2.children = [child21]
    
            expect:
            root.findByPath(':') == root
            root.findByPath('') == null
            root.findByPath('blah blah') == null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/c/env_test.cc

        TF_StringStream* children = TF_GetChildren(dirpath.c_str(), s);
        ASSERT_TF_OK(s) << "TF_GetChildren failed for " << dirpath;
        const char* childpath;
        ASSERT_TRUE(TF_StringStreamNext(children, &childpath));
        ASSERT_EQ(::tensorflow::string(childpath), "somefile.txt");
        // There should only be one file in this directory.
        ASSERT_FALSE(TF_StringStreamNext(children, &childpath));
        ASSERT_EQ(childpath, nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 10 20:52:48 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  7. test/typeparam/issue54535.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type node[T any] struct {
    	items    items[T]
    	children items[*node[T]]
    }
    
    func (n *node[T]) f(i int, j int) bool {
    	if len(n.children[i].items) < j {
    		return false
    	}
    	return true
    }
    
    type items[T any] []T
    
    func main() {
    	_ = node[int]{}
    	_ = f[int]
    }
    
    type s[T, U any] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:14:10 UTC 2022
    - 559 bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonLifecycleTest.groovy

            def children = daemonProcess.getChildProcesses()
            // Sends a kill -9 to the daemon process only
            daemons.daemon.killDaemonOnly()
    
            then:
            children.length == 0
    
            cleanup:
            // In the event this fails, clean up any orphaned children
            children.each { child ->
                new ProcessFixture(child as Long).kill(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/RequestedVersion.java

        private final Set<RenderableDependency> children = new LinkedHashSet<>();
    
        public RequestedVersion(ComponentSelector requested, ComponentIdentifier actual, boolean resolvable) {
            this.requested = requested;
            this.actual = actual;
            this.resolvable = resolvable;
        }
    
        public void addChild(DependencyEdge child) {
            children.addAll(child.getChildren());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            when:
            DefaultCopySpec child1 = spec.addFirst()
    
            then:
            child1
            spec.children == [child1]
    
            when:
            DefaultCopySpec child2 = spec.addFirst()
    
            then:
            child2
            spec.children == [child2, child1]
        }
    
        def 'add Spec in between two child Specs if given child exists'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top