Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for Roots (0.03 sec)

  1. 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)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

                cannotInferSourceRoots(fileTree);
            }
    
            @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)
  3. cmd/importverifier/importverifier.go

    	// has not .go files)
    	BaseDir string `yaml:"baseImportPath"`
    	// IgnoredSubTrees are roots of sub-trees of the BaseDir for which we do
    	// not want to enforce any import restrictions whatsoever, given as
    	// relative paths from the root of the repository.
    	IgnoredSubTrees []string `yaml:"ignoredSubTrees,omitempty"`
    	// AllowedImports are roots of package trees that are allowed to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

            """
    
            then:
            succeeds "t"
            def buildPaths = scopeIds.lastBuildPaths()
            buildPaths.size() == 2
        }
    
        def "different project roots have different workspace ids"() {
            when:
            file("a/settings.gradle") << ""
            file("b/settings.gradle") << ""
            succeeds("help", "-p", "a")
            succeeds("help", "-p", "b")
    
    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

            SnapshotDiffListener NOOP = (removedSnapshots, addedSnapshots) -> {};
    
            /**
             * Called after the update to {@link SnapshotHierarchy} finished.
             *
             * Only the roots of added/removed hierarchies are reported.
             */
            void changed(Collection<FileSystemLocationSnapshot> removedSnapshots, Collection<FileSystemLocationSnapshot> addedSnapshots);
        }
    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

    test these changes without affecting `master`/`release` pipeline. Here are the instructions.
    
    - 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)
    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 .
    
    ! go build example.net/tools
    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.
    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