Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 214 for rootsOf (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/crypto/x509/verify.go

    		}
    		if opts.Roots != nil && opts.Roots.systemPool {
    			platformChains, err := c.systemVerify(&opts)
    			// If the platform verifier succeeded, or there are no additional
    			// roots, return the platform verifier result. Otherwise, continue
    			// with the Go verifier.
    			if err == nil || opts.Roots.len() == 0 {
    				return platformChains, err
    			}
    		}
    	}
    
    	if opts.Roots == nil {
    		opts.Roots = systemRootsPool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/modload/load.go

    			Tags:                  tags,
    			ResolveMissingImports: true,
    			SilencePackageErrors:  true,
    		},
    		requirements: rs,
    		listRoots: func(*Requirements) (roots []string) {
    			roots = append(roots, imports...)
    			roots = append(roots, testImports...)
    			return roots
    		},
    	})
    	requirements = loaded.requirements
    
    	if !ExplicitWriteGoMod {
    		if err := commitRequirements(ctx, WriteOpts{}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/modload/import.go

    			// shortest to longest. Reverse them now.
    			for i := 0; i < len(mods)/2; i++ {
    				j := len(mods) - 1 - i
    				mods[i], mods[j] = mods[j], mods[i]
    				roots[i], roots[j] = roots[j], roots[i]
    				dirs[i], dirs[j] = dirs[j], dirs[i]
    			}
    			return module.Version{}, "", "", nil, &AmbiguousImportError{importPath: path, Dirs: dirs, Modules: mods}
    		}
    
    		if len(sumErrMods) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top