Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,337 for trees (0.05 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/inspect/inspect.go

    // license that can be found in the LICENSE file.
    
    // Package inspect defines an Analyzer that provides an AST inspector
    // (golang.org/x/tools/go/ast/inspector.Inspector) for the syntax trees
    // of a package. It is only a building block for other analyzers.
    //
    // Example of use in another analysis:
    //
    //	import (
    //		"golang.org/x/tools/go/analysis"
    //		"golang.org/x/tools/go/analysis/passes/inspect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultCacheableOutputFilePropertySpec.java

    import org.gradle.internal.file.TreeType;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * An output property consisting of a single output file/directory.
     *
     * When using directory trees as outputs (e.g. via {@link org.gradle.api.Project#fileTree(Object)}), {@link DirectoryTreeOutputFilePropertySpec} is used.
     * Everything else will use this class.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:23 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/search.go

    			elem := ""
    
    			// Don't use GOROOT/src but do walk down into it.
    			if pkgDir == root {
    				if importPathRoot == "" {
    					return nil
    				}
    			} else {
    				// Avoid .foo, _foo, and testdata subdirectory trees.
    				_, elem = filepath.Split(pkgDir)
    				if strings.HasPrefix(elem, ".") || strings.HasPrefix(elem, "_") || elem == "testdata" {
    					want = false
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/regexp/syntax/doc.go

    // license that can be found in the LICENSE file.
    
    // Code generated by mksyntaxgo from the RE2 distribution. DO NOT EDIT.
    
    /*
    Package syntax parses regular expressions into parse trees and compiles
    parse trees into programs. Most clients of regular expressions will use the
    facilities of package [regexp] (such as [regexp.Compile] and [regexp.Match]) instead of this package.
    
    # Syntax
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ProgressCrossVersionSpec.groovy

            }
    
            then: "only the matching progress events must be forwarded to the attached listener"
            !events.tests.empty
            events.operations == events.tests
            events.trees.size() == 1
        }
    
        def goodCode() {
            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

        }
    
        private validateOperations(ProgressEvents events, MavenHttpModule projectFModuleMissing, MavenHttpModule projectF2) {
            events.trees == events.operations
            events.operation("Download ${projectFModuleMissing.pom.uri}").assertIsDownload(projectFModuleMissing.pom)
            events.operation("Download ${projectF2.pom.uri}").assertIsDownload(projectF2.pom)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/go/build/doc.go

    // license that can be found in the LICENSE file.
    
    // Package build gathers information about Go packages.
    //
    // # Go Path
    //
    // The Go path is a list of directory trees containing Go source code.
    // It is consulted to resolve imports that cannot be found in the standard
    // Go tree. The default path is the value of the GOPATH environment
    // variable, interpreted as a path list appropriate to the operating system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/InputFingerprinter.java

            /**
             * Returns the file property names which need an isEmpty() check when used with {@link org.gradle.api.tasks.SkipWhenEmpty}.
             *
             * Archive file trees backed by a file need the isEmpty() check, since the fingerprint will be the backing file.
             */
            ImmutableSet<String> getPropertiesRequiringIsEmptyCheck();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

    import java.nio.file.attribute.BasicFileAttributes;
    import java.text.MessageFormat;
    import java.util.concurrent.atomic.AtomicLong;
    
    public interface DirectorySnapshotterStatistics {
        /**
         * The number of visited directory trees.
         */
        long getVisitedHierarchyCount();
    
        /**
         * The number of visited directories.
         */
        long getVisitedDirectoryCount();
    
        /**
         * The number of visited files.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassDependentsAccumulator.java

            if (seenClasses.containsKey(className)) {
                // same classes may be found in different classpath trees/jars
                // and we keep only the first one
                return;
            }
            seenClasses.put(className, hash);
            if (!constants.isEmpty()) {
                classesToConstants.put(className, constants);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top