Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 245 for Roots (0.2 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/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

        }
    
        @Override
        public Map<String, FileSystemLocationFingerprint> collectFingerprints(FileSystemSnapshot roots) {
            ImmutableMap.Builder<String, FileSystemLocationFingerprint> builder = ImmutableMap.builder();
            HashSet<String> processedEntries = new HashSet<>();
            roots.accept(new RelativePathTracker(), (snapshot, relativePath) -> {
                String absolutePath = snapshot.getAbsolutePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. 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)
  4. security/pkg/pki/util/verify_cert.go

    // - checking fields are set as expected.
    func VerifyCertificate(privPem []byte, certChainPem []byte, rootCertPem []byte, expectedFields *VerifyFields) error {
    	roots := x509.NewCertPool()
    	if rootCertPem != nil {
    		if ok := roots.AppendCertsFromPEM(rootCertPem); !ok {
    			return fmt.Errorf("failed to parse root certificate")
    		}
    	}
    
    	intermediates := x509.NewCertPool()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 10:37:29 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/testdata/script/mod_domain_root.txt

    # Module paths that are domain roots should resolve.
    # (example.com not example.com/something)
    
    env GO111MODULE=on
    go get
    
    -- go.mod --
    module x
    
    -- x.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 190 bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaModule.java

         *
         * @return The name of the JDK.
         * @since 3.4
         */
        String getJdkName() throws UnsupportedMethodException;
    
        /**
         * All content roots. Most idea modules have a single content root.
         *
         * @return content roots
         * @since 1.0-milestone-5
         */
        DomainObjectSet<? extends IdeaContentRoot> getContentRoots();
    
        /**
         * The gradle project that is associated with this module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFingerprintingStrategy.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
    - 3.4K bytes
    - Viewed (0)
  10. tools/proto/buf.yaml

    version: v1beta1
    build:
      roots:
        - operator
        - pkg
        - common-protos
    lint:
      allow_comment_ignores: true
      use:
        - BASIC
      except:
        - FIELD_LOWER_SNAKE_CASE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Mar 06 03:07:59 UTC 2022
    - 202 bytes
    - Viewed (0)
Back to top