Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for Roots (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .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)
  5. 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)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            calculateRoots(files)
        }
    
        List<File> files(String... paths) {
            paths.collect { new File("/", it).absoluteFile }
        }
    
        def "can find roots when leafs are directories"() {
            expect:
            toRoots([]) == []
            toRoots(files("a/a", "a/a")) == files("a/a")
            toRoots(files("a", "b", "c")) == files("a", "b", "c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/SelectiveCompiler.java

                return rebuildAllCompiler.execute(spec);
            }
            if (spec.getSourceRoots().isEmpty()) {
                LOG.info("Full recompilation is required because the source roots could not be inferred.");
                return rebuildAllCompiler.execute(spec);
            }
    
            Timer clock = Time.startTimer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    # root of the module graph contains the package), whereas it is ambiguous in
    # Go 1.16 (because two different modules contain plausible packages and Go 1.16
    # does not privilege roots above other dependencies).
    #
    # However, the overall build list is identical for both versions.
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExcludeIntegrationTest.groovy

            result.assertTaskNotExecuted(":sub:test")
        }
    
        def "cannot use unqualified task paths to exclude tasks from included build roots"() {
            when:
            run("build", "-x", "test")
    
            then:
            result.assertTasksExecuted(":build", ":sub:build", ":included:build", ":included:sub:build", ":included:test", ":included:sub:test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 12:16:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/nowb.go

    	// q is the queue of ODCLFUNC Nodes to visit in BFS order.
    	var q ir.NameQueue
    
    	for _, fn := range typecheck.Target.Funcs {
    		symToFunc[fn.LSym] = fn
    
    		// Make nowritebarrierrec functions BFS roots.
    		if fn.Pragma&ir.Nowritebarrierrec != 0 {
    			funcs[fn] = nowritebarrierrecCall{}
    			q.PushRight(fn.Nname)
    		}
    		// Check go:nowritebarrier functions.
    		if fn.Pragma&ir.Nowritebarrier != 0 && fn.WBPos.IsKnown() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top