Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 104 for Roots (0.05 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

    /**
     * The consuming visitor for file properties on work.
     * <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)}.
     *
     * @since 8.3
     */
    public interface FilePropertyVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_graph_version.txt

    cmp go.mod go.mod.orig
    
    
    # If we actually update the go.mod file to the requested go version,
    # we should get the same selected versions, but the roots of the graph
    # may be updated.
    #
    # TODO(#45551): The roots should not be updated.
    
    go mod edit -go=1.16
    go mod graph
    ! stdout '^example\.com/m example\.com/retract/incompatible@v1\.0\.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/modload/mvs.go

    // with any exclusions or replacements applied internally.
    type mvsReqs struct {
    	roots []module.Version
    }
    
    func (r *mvsReqs) Required(mod module.Version) ([]module.Version, error) {
    	if mod.Version == "" && MainModules.Contains(mod.Path) {
    		// Use the build list as it existed when r was constructed, not the current
    		// global build list.
    		return r.roots, nil
    	}
    
    	if mod.Version == "none" {
    		return nil, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/kubeadm/app/phases/certs/renewal/filerenewer_test.go

    	}
    
    	// verify the renewed certificate
    	pool := x509.NewCertPool()
    	pool.AddCert(testCACert)
    
    	_, err = cert.Verify(x509.VerifyOptions{
    		DNSName:   "test-domain.space",
    		Roots:     pool,
    		KeyUsages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    	})
    	if err != nil {
    		t.Errorf("couldn't verify new cert: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 04:36:54 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *
     *     <dt>watchable hierarchies</dt>
     *     <dd>The list of file system hierarchies Gradle might want to watch if interesting content appears in the VFS for them.
     *     These are currently roots of the builds seen by the daemon during the current or previous invocations.
     *     Interesting content means that we keep track of something that actually exists under the hierarchy (so not exclusively missing files).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top