Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for Roots (0.11 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

            if (cacheableWork.shouldInvalidateOutputsBeforeLoad()) {
                ImmutableList.Builder<String> roots = ImmutableList.builder();
                cacheableWork.visitOutputTrees((name, type, root) -> roots.add(root.getAbsolutePath()));
                fileSystemAccess.invalidate(roots.build());
            }
            return buildCache.load(cacheKey, cacheableWork);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

                    roots == []
                }
                with(inputFileProperties.inputArtifact) {
                    hash != null
                    attributes == ['DIRECTORY_SENSITIVITY_DEFAULT', 'FINGERPRINTING_STRATEGY_ABSOLUTE_PATH', 'LINE_ENDING_SENSITIVITY_DEFAULT']
                    with(Iterables.getOnlyElement(roots)) {
                        hash != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

            protected static class Property {
    
                private final String hash;
                private final Set<String> attributes;
                private final List<Entry> roots = new ArrayList<>();
    
                public Property(String hash, Set<String> attributes) {
                    this.hash = hash;
                    this.attributes = attributes;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\Windows Kits\Installed Roots/, "KitsRoot") >> dir2.absolutePath
            windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\Windows Kits\Installed Roots/, "KitsRoot81") >> dir3.absolutePath
    
            when:
            def result = windowsSdkLocator.locateComponent(null)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

            def visitor = new TestInstanceMetadataVisitor()
    
            when:
            TypeMetadataWalker.instanceWalker(typeMetadataStore, TestNested.class).walk(myTask, visitor)
    
            then:
            visitor.roots == ["null::$myTask"] as List<String>
            visitor.nested == ["nested::null", "nestedList::null", "nestedListOfLists::null", "nestedMap::null", "nestedNamedList::null", "nestedProperty::null"] as List<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    PKJQCs0CM0zkesktuLi/gFpuB0nEwyOgLg==
    -----END CERTIFICATE-----`
    )
    
    func TestX509(t *testing.T) {
    	multilevelOpts := DefaultVerifyOptions()
    	multilevelOpts.Roots = x509.NewCertPool()
    	multilevelOpts.Roots.AddCert(getCertsFromFile(t, "root")[0])
    
    	testCases := map[string]struct {
    		Insecure bool
    		Certs    []*x509.Certificate
    
    		Opts x509.VerifyOptions
    		User UserConversion
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     * [shouldBuildStubsForBinaryLibraries] is true. In Standalone mode, binary roots don't need to be specified because library symbols are
     * provided via class-based deserialization, not stub-based deserialization.
     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
     * @param sharedBinaryRoots Binary roots that are shared between multiple different projects. This allows Kotlin tests to cache stubs for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

                    connection.newBuild().forTasks('publish')
                        .addProgressListener(events).run()
            }
    
            then:
            def roots = events.operations.findAll { it.parent == null }.collect { it.descriptor.name }
    
            roots == [
                "Run build",
                "Download ${module.rootMetaData.uri}",
                "Download ${module.rootMetaData.sha1.uri}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/certcontroller.go

    )
    
    // initDNSCertsK8SRA will create the certificates using K8S RA.
    // Only called by initIstiodCerts if provider (PILOT_CERT_PROVIDER) has k8s.io prefix
    // and local certificates are not found.
    //
    // The roots are loaded from mesh config.
    func (s *Server) initDNSCertsK8SRA() error {
    	var certChain, keyPEM, caBundle []byte
    	var err error
    	pilotCertProviderName := features.PilotCertProvider
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			// load ca certificates into a pool
    			roots := x509.NewCertPool()
    			for _, caCert := range caCerts {
    				roots.AddCert(caCert)
    			}
    
    			<-startedCh
    
    			// try to dial
    			addr := fmt.Sprintf("localhost:%d", secureOptions.BindPort)
    			t.Logf("Dialing %s as %q", addr, test.ServerName)
    			conn, err := tls.Dial("tcp", addr, &tls.Config{
    				RootCAs:    roots,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top