Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for Roots (0.3 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/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

            when:
            def directories = supplier.get()
    
            then:
            directories.isEmpty()
        }
    
        def "has default roots"() {
            given:
            def supplier = new LinuxInstallationSupplier()
    
            expect:
            supplier.roots.length > 1
        }
    
        def "supplies no installations for non-existing directory"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    			}
    			continue
    		}
    
    		roots = append(roots, r.Mod)
    		if !r.Indirect {
    			direct[r.Mod.Path] = true
    		}
    	}
    	goVersion := gover.FromGoMod(modFile)
    	var toolchain string
    	if addToolchainRoot && modFile.Toolchain != nil {
    		toolchain = modFile.Toolchain.Name
    	}
    	roots = appendGoAndToolchainRoots(roots, goVersion, toolchain, direct)
    	return roots, direct
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationsFixture.groovy

            }
        }
    
        @Override
        List<BuildOperationRecord> getRoots() {
            getTree().roots
        }
    
        List<BuildOperationRecord> getDanglingChildren() {
            new BuildOperationTreeFixture(BuildOperationTrace.readPartialTree(path)).roots.findAll { it.parentId != null }
        }
    
        @Override
        @SuppressWarnings("GrUnnecessaryPublicModifier")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

    import kotlin.io.path.extension
    
    /**
     * Collect source file path as [String] from the given source roots in [compilerConfig].
     *
     * Such source roots are either [KotlinSourceRoot] or [JavaSourceRoot], and thus
     * this util collects all `.kt` and `.java` files under source roots.
     */
    internal fun getSourceFilePaths(
        compilerConfig: CompilerConfiguration,
        includeDirectoryRoot: Boolean = false,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/crypto/tls/example_test.go

    	// default root set of the current operating system.
    	roots := x509.NewCertPool()
    	ok := roots.AppendCertsFromPEM([]byte(rootPEM))
    	if !ok {
    		panic("failed to parse root certificate")
    	}
    
    	conn, err := tls.Dial("tcp", "mail.google.com:443", &tls.Config{
    		RootCAs: roots,
    	})
    	if err != nil {
    		panic("failed to connect: " + err.Error())
    	}
    	conn.Close()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/crypto/x509/hybrid_pool_test.go

    		// of the root pool is not fully initialized, causing an expected
    		// platform verification to fail. In part this is because Windows
    		// dynamically populates roots into its local trust store at time of
    		// use. We can attempt to prime the pool by attempting TLS connections
    		// to google.com until it works, suggesting the pool has been properly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. 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)
Back to top