Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 245 for Roots (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top