Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 268 for roots (0.12 sec)

  1. cmd/importverifier/importverifier.go

    // trees for a tree of source code
    type ImportRestriction struct {
    	// BaseDir is the root of a package tree that is restricted by this
    	// configuration, given as a relative path from the root of the repository.
    	// This is a directory which `go list` might not consider a package (if it
    	// has not .go files)
    	BaseDir string `yaml:"baseImportPath"`
    	// IgnoredSubTrees are roots of sub-trees of the BaseDir for which we do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractFileSystemLocationSnapshot.java

            return missingSnapshotForAbsolutePath(relativePath.getAbsolutePath());
        }
    
        @Override
        public Stream<FileSystemLocationSnapshot> roots() {
            return Stream.of(this);
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

            }
    
            @Override
            public void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree) {
                // We need to add missing files as source roots, since the package name for deleted files provided by InputChanges also need to be determined.
                if (!root.exists() || root.isDirectory()) {
                    sourceRoots.add(root);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

            succeeds "t"
            scopeIds.lastBuildPaths() == [":", ":a", ":a:buildSrc", ":b", ":b:buildSrc"]
        }
    
        def "gradle-build builds with different root does not inherit workspace id"() {
            given:
            // GradleBuild launched builds with a different root dir
            // are not considered to be of the same workspace
            scopeIds.disableConsistentWorkspaceIdCheck = true
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

         * it is testing the fallback behavior of [SourcePathProvider]
         */
        @Test
        fun `given buildSrc folder, it will fallback to approximate buildSrc source roots`() {
            withFolders {
                "project" {
                    "buildSrc/src/main" {
                        +"foo"
                        +"bar"
                    }
                }
                "gradle" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

         */
        @CheckReturnValue
        SnapshotHierarchy empty();
    
        CaseSensitivity getCaseSensitivity();
    
        /**
         * Returns all root snapshots in the hierarchy.
         */
        Stream<FileSystemLocationSnapshot> rootSnapshots();
    
        /**
         * Returns all root snapshots in the hierarchy below {@code absolutePath}.
         */
        Stream<FileSystemLocationSnapshot> rootSnapshotsUnder(String absolutePath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. .teamcity/README.md

    - Click the left sidebar "VCS Roots" here and create a VCS root [here](https://builds.gradle.org/admin/editProject.html?projectId=Gradle&cameFromUrl=%2Fproject.html%3FprojectId%3DGradle%26tab%3DprojectOverview%26branch_Gradle_Master_Check%3Dmaster)
      - Suppose the VCS root you just create is `MyNewVcsRoot`. Set "default branch" to `myTestBranch` where your code exists.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_go_version_missing.txt

    # to the current version, converting the requirements from eager to lazy.
    #
    # Since we don't know which requirements are actually relevant to the main
    # module, all requirements are added as roots, making the requirements untidy.
    
    go list -mod=mod all
    ! stdout '^example.com/testdep$'
    cmp stdout list-1.txt
    cmpenv go.mod go.mod.untidy
    
    go mod tidy
    cmpenv go.mod go.mod.tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work.txt

    cp go.work.backup go.work
    
    cp go.work.d go.work
    go work use # update go version
    go run example.com/d
    
    # Test that we don't run into "newRequirements called with unsorted roots"
    # panic with unsorted main modules.
    cp go.work.backwards go.work
    go work use # update go version
    go run example.com/d
    
    # Test that command-line-arguments work inside and outside modules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    stderr '^package example.net/tools: build constraints exclude all Go files in .*[/\\]tools$'
    
    
    # https://golang.org/issue/29268
    # 'go get' should fetch modules whose roots contain test-only packages, but
    # without the -t flag shouldn't error out if the test has missing dependencies.
    
    go get example.net/testonly@v0.1.0
    
    # With the -t flag, the test dependencies must resolve successfully.
    ! go get -t example.net/testonly@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top