Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 268 for roots (0.04 sec)

  1. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/WatchedHierarchiesTest.groovy

            1 * watchable.stream() >> Stream.of(parent, child, grandchild)
        }
    
        private static List<String> rootsOf(FileHierarchySet set) {
            def roots = []
            set.visitRoots((root -> roots.add(root)))
            return roots
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocatorTest.groovy

        def "uses ucrt found in registry"() {
            def dir1 = ucrtDir("ucrt", "10.0.10150.0")
    
            given:
            windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\Windows Kits\Installed Roots/, "KitsRoot10") >> dir1.absolutePath
    
            when:
            def result = ucrtLocator.locateComponent(null)
    
            then:
            result.available
            result.component.name == "Universal C Runtime 10"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/BuildProgressCrossVersionSpec.groovy

                        .addProgressListener(events).run()
            }
    
            then:
            println events.describeOperationsTree()
            def roots = events.operations.findAll { it.parent == null }
            roots.any { it.descriptor.name == 'Run build' }
    
            def orphans = roots.findAll { it.descriptor.name != 'Run build' }
            orphans.size() == 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

            List<String> roots;
            if (nonNull(scope, "scope") == ProjectScope.MAIN) {
                roots = prj.getCompileSourceRoots();
            } else if (scope == ProjectScope.TEST) {
                roots = prj.getTestCompileSourceRoots();
            } else {
                throw new IllegalArgumentException("Unsupported scope " + scope);
            }
            return roots.stream()
                    .map(Paths::get)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. security/pkg/k8s/chiron/utils.go

    		return nil, nil, fmt.Errorf("error when retrieving CA cert: (%v)", err)
    	}
    	// Verify the certificate chain before returning the certificate
    	roots := x509.NewCertPool()
    	if roots == nil {
    		return nil, nil, fmt.Errorf("failed to create cert pool")
    	}
    	if ok := roots.AppendCertsFromPEM(caCert); !ok {
    		return nil, nil, fmt.Errorf("failed to append CA certificate")
    	}
    	intermediates := x509.NewCertPool()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_notall.txt

    ! stdout '^x/fromotherroottest$'
    ! stdout '^y/fromotherdeptest$'
    
    cmp go.mod go.mod.orig
    
    # With -deps -test, test dependencies of other roots should be included,
    # but test dependencies of non-roots should not.
    
    go list -deps -test all x/otherroot
    stdout '^x/inall$'
    stdout '^x/inall/fromtest$'
    stdout '^x/inall/fromtestinall$'
    stdout '^x/otherroot$'
    stdout '^x/otherdep$'
    
    stdout '^x/fromotherroottest$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/doc/dirs.go

    // walk walks the trees in GOROOT and GOPATH.
    func (d *Dirs) walk(roots []Dir) {
    	for _, root := range roots {
    		d.bfsWalkRoot(root)
    	}
    	close(d.scan)
    }
    
    // bfsWalkRoot walks a single directory hierarchy in breadth-first lexical order.
    // Each Go source directory it finds is delivered on d.scan.
    func (d *Dirs) bfsWalkRoot(root Dir) {
    	root.dir = filepath.Clean(root.dir) // because filepath.Join will do it anyway
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 9K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/MissingRootAndDuplicateIgnoringFileSystemSnapshotVisitor.java

    import org.gradle.internal.snapshot.SnapshotVisitResult;
    
    import java.util.HashSet;
    
    /**
     * A {@link RootTrackingFileSystemSnapshotHierarchyVisitor} that ignores missing roots and multiple entries for the same path.
     */
    public abstract class MissingRootAndDuplicateIgnoringFileSystemSnapshotVisitor extends RootTrackingFileSystemSnapshotHierarchyVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r75/KotlinSettingsScriptModelCrossVersionSpec.groovy

    class KotlinSettingsScriptModelCrossVersionSpec extends AbstractKotlinScriptModelCrossVersionTest {
    
        @LeaksFileHandles("Kotlin compiler daemon on buildSrc jar")
        def "sourcePath does not include buildSrc source roots"() {
    
            given:
            withKotlinBuildSrc()
            def settings = withDefaultSettings() << """
                include(":sub")
            """
    
            expect:
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/IgnoredPathFingerprintingStrategy.java

        }
    
        @Override
        public Map<String, FileSystemLocationFingerprint> collectFingerprints(FileSystemSnapshot roots) {
            ImmutableMap.Builder<String, FileSystemLocationFingerprint> builder = ImmutableMap.builder();
            roots.accept(new MissingRootAndDuplicateIgnoringFileSystemSnapshotVisitor() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top