Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,337 for trees (0.04 sec)

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

    import (
    	"go/ast"
    )
    
    // An Inspector provides methods for inspecting
    // (traversing) the syntax trees of a package.
    type Inspector struct {
    	events []event
    }
    
    // New returns an Inspector for the specified syntax trees.
    func New(files []*ast.File) *Inspector {
    	return &Inspector{traverse(files)}
    }
    
    // An event represents a push or a pop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     *
     * <p>
     * For a given build tree, only a single process is allowed write access to extract archives at a time.
     *
     * Multiple build processes are allowed to extract archives concurrently as long as they use different build trees (in other words, different root directories).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/text/template/template.go

    	t.init()
    	t.muFuncs.RLock()
    	trees, err := parse.Parse(t.name, text, t.leftDelim, t.rightDelim, t.parseFuncs, builtins())
    	t.muFuncs.RUnlock()
    	if err != nil {
    		return nil, err
    	}
    	// Add the newly parsed trees, including the one for t, into our common structure.
    	for name, tree := range trees {
    		if _, err := t.AddParseTree(name, tree); err != nil {
    			return nil, err
    		}
    	}
    	return t, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

     * For example, buildSrc shares the same build scope ID as the overall build.
     * All composite participants also share the same build scope ID.
     * That is, all “nested” build trees (in terms of GradleLauncher, GradleBuild etc.) share the same build invocation ID.
     *
     * This ID is, by definition, not persistent.
     */
    @ServiceScope(Scope.BuildTree.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            then:
            targetOutputFile.text == "output"
    
            where:
            type      | treeName
            "long"    | "tree-" + ("x" * 100)
            "unicode" | "tree-dezső"
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        def "can pack tree directory with files having #type characters in name"() {
            def sourceOutputDir = temporaryFolder.file("source").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java

    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Defines a hierarchical visitor for collecting dependency node trees.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface NodeVisitor {
        /**
         * Starts the visit to the specified dependency node.
         *
         * @param node the dependency node to visit
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultCompositeFileTreeTest.groovy

            visited.toSet() == [a1, b1].toSet()
        }
    
        def "dependencies are union of dependencies of source trees"() {
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def task3 = Stub(Task)
            def tree1 = Stub(FileTreeInternal)
            def tree2 = Stub(FileTreeInternal)
    
            given:
            tree1.visitDependencies(_) >> { TaskDependencyResolveContext context ->
                context.add(task1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/compress/bzip2/huffman.go

    	// order to minimize the amount of information needed to build a tree
    	// bzip2 uses a canonical tree so that it can be reconstructed given
    	// only the code length assignments.
    
    	if len(lengths) < 2 {
    		panic("newHuffmanTree: too few symbols")
    	}
    
    	var t huffmanTree
    
    	// First we sort the code length assignments by ascending code length,
    	// using the symbol value to break ties.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. operator/pkg/tpath/util.go

    // limitations under the License.
    
    /*
    util.go contains utility function for dealing with trees.
    */
    
    package tpath
    
    import (
    	"gopkg.in/yaml.v2"
    	yaml2 "sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/util"
    )
    
    // AddSpecRoot adds a root node called "spec" to the given tree and returns the resulting tree.
    func AddSpecRoot(tree string) (string, error) {
    	t, nt := make(map[string]any), make(map[string]any)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/CompositeFileTree.java

        public FileTree visit(Action<? super FileVisitDetails> visitor) {
            for (FileTree tree : getSourceCollections()) {
                tree.visit(visitor);
            }
            return this;
        }
    
        @Override
        public FileTree visit(FileVisitor visitor) {
            for (FileTree tree : getSourceCollections()) {
                tree.visit(visitor);
            }
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top