Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 268 for roots (0.07 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTree.java

        public final List<BuildOperationRecord> roots;
        public final Map<Long, BuildOperationRecord> records;
    
        BuildOperationTree(List<BuildOperationRecord> roots) {
            ImmutableMap.Builder<Long, BuildOperationRecord> records = ImmutableMap.builder();
            for (BuildOperationRecord record : roots) {
                visit(records, record);
            }
            this.roots = BuildOperationRecord.ORDERING.immutableSortedCopy(roots);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 07 09:24:42 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/DefaultCurrentFileCollectionFingerprint.java

        private final FileSystemSnapshot roots;
        private final ImmutableMultimap<String, HashCode> rootHashes;
        private final HashCode strategyConfigurationHash;
        private HashCode hash;
    
        public static CurrentFileCollectionFingerprint from(FileSystemSnapshot roots, FingerprintingStrategy strategy, @Nullable  FileCollectionFingerprint candidate) {
            if (roots == FileSystemSnapshot.EMPTY) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/crypto/x509/root.go

    var x509usefallbackroots = godebug.New("x509usefallbackroots")
    
    // SetFallbackRoots sets the roots to use during certificate verification, if no
    // custom roots are specified and a platform verifier or a system certificate
    // pool is not available (for instance in a container which does not have a root
    // certificate bundle). SetFallbackRoots will panic if roots is nil.
    //
    // SetFallbackRoots may only be called once, if called multiple times it will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/crypto/x509/root_plan9.go

    }
    
    func loadSystemRoots() (*CertPool, error) {
    	roots := NewCertPool()
    	var bestErr error
    	for _, file := range certFiles {
    		data, err := os.ReadFile(file)
    		if err == nil {
    			roots.AppendCertsFromPEM(data)
    			return roots, nil
    		}
    		if bestErr == nil || (os.IsNotExist(bestErr) && !os.IsNotExist(err)) {
    			bestErr = err
    		}
    	}
    	if bestErr == nil {
    		return roots, nil
    	}
    	return nil, bestErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 828 bytes
    - Viewed (0)
  5. src/time/zoneinfo_ios.go

    	// The working directory at initialization is the root of the
    	// app bundle: "/private/.../bundlename.app". That's where we
    	// keep zoneinfo.zip for tethered iOS builds.
    	// For self-hosted iOS builds, the zoneinfo.zip is in GOROOT.
    	var roots []string
    	if goroot != "" {
    		roots = append(roots, goroot+"/lib/time")
    	}
    	wd, err := syscall.Getwd()
    	if err == nil {
    		roots = append(roots, wd)
    	}
    	for _, r := range roots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. src/crypto/x509/root_unix.go

    				firstErr = err
    			}
    			continue
    		}
    		for _, fi := range fis {
    			data, err := os.ReadFile(directory + "/" + fi.Name())
    			if err == nil {
    				roots.AppendCertsFromPEM(data)
    			}
    		}
    	}
    
    	if roots.len() > 0 || firstErr == nil {
    		return roots, nil
    	}
    
    	return nil, firstErr
    }
    
    // readUniqueDirectoryEntries is like os.ReadDir but omits
    // symlinks that point within the directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplier.java

            return "Common Linux Locations";
        }
    
        @Override
        public Set<InstallationLocation> get() {
            if (os.isLinux()) {
                return Arrays.stream(roots)
                    .map(root -> FileBasedInstallationFactory.fromDirectory(root, getSourceName(), InstallationLocation::autoDetected))
                    .flatMap(Set::stream)
                    .collect(Collectors.toSet());
            }
            return Collections.emptySet();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/graph.go

    // The caller must ensure that the root slice is not modified while the Graph
    // may be in use.
    func NewGraph(cmp func(p, v1, v2 string) int, roots []module.Version) *Graph {
    	g := &Graph{
    		cmp:      cmp,
    		roots:    slices.Clip(roots),
    		required: make(map[module.Version][]module.Version),
    		isRoot:   make(map[module.Version]bool),
    		selected: make(map[string]string),
    	}
    
    	for _, m := range roots {
    		g.isRoot[m] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/inittask.go

    		ctxt.loader.SetAttrLocal(ctxt.mainInittasks, true)
    	case BuildModeShared:
    		// For a shared library, all packages are roots.
    		var roots []string
    		for _, lib := range ctxt.Library {
    			roots = append(roots, fmt.Sprintf("%s..inittask", objabi.PathToPrefix(lib.Pkg)))
    		}
    		ctxt.mainInittasks = ctxt.inittaskSym(roots, "go:shlib.inittasks")
    		// Make symbol local so multiple plugins don't clobber each other's inittask list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/DefaultFileCollectionSnapshotter.java

                fileSystemAccess.read(
                    root.getAbsolutePath(),
                    new PatternSetSnapshottingFilter(patterns, stat)
                )
                    .map(roots::add);
            }
    
            @Override
            public void visitFileTreeBackedByFile(File file, FileTreeInternal fileTree, FileSystemMirroringFileTree sourceTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top