Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for roots (0.07 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/BuildActionCrossVersionSpec.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    class BuildActionCrossVersionSpec extends ToolingApiSpecification {
        @TargetGradleVersion(">=3.2")
        def "can use multiple action implementations with different classpath roots and loaded from same ClassLoader"() {
            settingsFile.text = 'rootProject.name = "not broken"'
    
            // Ensure daemon is reused
            toolingApi.requireIsolatedDaemons()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

            }) == SnapshotVisitResult.CONTINUE;
        }
    
        private static Map<String, FileSystemLocationFingerprint> collectFingerprints(FileSystemSnapshot roots) {
            Map<String, FileSystemLocationFingerprint> result = new LinkedHashMap<>();
            roots.accept(new RelativePathTracker(),
                (snapshot, relativePath) -> {
                    result.put(snapshot.getAbsolutePath(), createFingerprint(relativePath, snapshot));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/crypto/x509/hybrid_pool_test.go

    		t.Skip()
    	}
    	if runtime.GOOS == "windows" {
    		// NOTE(#51599): on the Windows builders we sometimes see that the state
    		// 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

     */
    public interface ExecutionOutputState {
    
        /**
         * Whether the execution was successful.
         */
        boolean isSuccessful();
    
        /**
         * Snapshots of the roots of output properties.
         *
         * In the presence of overlapping outputs this might be different from
         * {@link BeforeExecutionState#getOutputFileLocationSnapshots()},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/crypto/x509/cert_pool.go

    	// funcs).
    	haveSum map[sum224]bool
    
    	// systemPool indicates whether this is a special pool derived from the
    	// system roots. If it includes additional roots, it requires doing two
    	// verifications, one using the roots provided by the caller, and one using
    	// the system platform verifier.
    	systemPool bool
    }
    
    // lazyCert is minimal metadata about a Cert and a func to retrieve it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

             * <p>
             * Properties are visited depth-first lexicographical.
             * Roots are visited in semantic order (i.e. the order in which they make up the file collection)
             * Files and directories are depth-first lexicographical.
             * <p>
             * For roots that are a file, they are also visited with {@link #file(VisitState)}.
             */
            interface InputFilePropertyVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/FileCollectionSnapshotter.java

            /**
             * Whether any of the snapshot file collections is an archive tree backed by a file.
             */
            boolean containsArchiveTrees();
        }
    
        /**
         * Snapshot the roots of a file collection.
         */
        Result snapshot(FileCollection fileCollection);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/BeforeExecutionState.java

        /**
         * {@inheritDoc}
         */
        @Override
        ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties();
    
        /**
         * Snapshots of the roots of output properties.
         *
         * This includes snapshots for the whole output {@link org.gradle.api.file.FileCollection}.
         *
         * @see PreviousExecutionState#getOutputFilesProducedByWork()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/crypto/x509/root_linux.go

    	"/etc/pki/tls/certs", // Fedora/RHEL
    }
    
    func init() {
    	if goos.IsAndroid == 1 {
    		certDirectories = append(certDirectories,
    			"/system/etc/security/cacerts",    // Android system roots
    			"/data/misc/keychain/certs-added", // User trusted CA folder
    		)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:55:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/LocalFileTree.java

     * limitations under the License.
     */
    package org.gradle.api.internal.file.collections;
    
    /**
     * A file tree whose contents are contained in zero or more local roots (file or directory).
     */
    public interface LocalFileTree extends MinimalFileTree {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 827 bytes
    - Viewed (0)
Back to top