Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 240 for rootsOf (0.11 sec)

  1. 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)
  2. .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)
  3. 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)
  4. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/u$'
    stdout '^example.com/w$'
    ! stdout '^example.com/x$'
    
    -- go.mod --
    module example.com/main
    
    // Note: this go.mod file initially specifies go 1.15,
    // but includes some redundant roots so that it
    // also already obeys the 1.17 lazy loading invariants.
    go 1.15
    
    require (
    	example.com/a v0.1.0
    	example.com/b v0.1.0 // indirect
    	example.com/q v0.1.0
    	example.com/r v0.1.0 // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K 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/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    This comes with several benefits:
    
    * dependencies do not leak into the compile include roots and link libraries of consumers, so they can never accidentally depend on a transitive dependency
    * faster compilation thanks to the reduced include roots and link libraries
    * fewer recompilations when implementation dependencies change since the consumer would not need to be recompiled
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            if (sourceRoots.isEmpty()) {
                throw new InvalidUserDataException("Unable to infer source roots. Incremental Groovy compilation requires the source roots. Change the configuration of your sources or disable incremental Groovy compilation.");
            }
    
            if (annotationProcessingConfigured) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pilot/pkg/model/virtualservice.go

    	}
    	return &out
    }
    
    func hasConflict(root, leaf *networking.HTTPMatchRequest) bool {
    	roots := []*networking.StringMatch{root.Uri, root.Scheme, root.Method, root.Authority}
    	leaves := []*networking.StringMatch{leaf.Uri, leaf.Scheme, leaf.Method, leaf.Authority}
    	for i := range roots {
    		if stringMatchConflict(roots[i], leaves[i]) {
    			return true
    		}
    	}
    	// header conflicts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top