Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for IsRoot (0.11 sec)

  1. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                boolean isRoot = relativePath.isRoot();
                String targetPath = getTargetPath(relativePath);
                snapshot.accept(new FileSystemLocationSnapshotVisitor() {
                    @Override
                    public void visitDirectory(DirectorySnapshot directorySnapshot) {
                        assertCorrectType(isRoot, snapshot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseFilePropertyVisitState.java

            this.name = snapshot.getName();
            this.hash = fingerprint.getNormalizedContentHash();
    
            boolean isRoot = depth == 0;
            if (isRoot) {
                preRoot();
            }
    
            file();
    
            if (isRoot) {
                postRoot();
            }
            return SnapshotVisitResult.CONTINUE;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/RelativePathParser.java

            String currentName = currentPath.substring(sizeOfCommonPrefix + 1);
            if (directory) {
                directoryPaths.addLast(currentPath);
                directoryNames.addLast(currentName);
            }
            return isRoot();
        }
    
        private boolean exitDirectory(Runnable exitDirectoryHandler) {
            if (directoryPaths.pollLast() == null) {
                return true;
            }
            if (directoryNames.pollLast() == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/FilteredTrackingMerkleDirectorySnapshotBuilder.java

                    @Override
                    public SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot, boolean isRoot) {
                        if (isRoot) {
                            return SnapshotVisitResult.CONTINUE;
                        } else {
                            unfilteredSnapshotRecorder.accept(snapshot);
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func (t Tag) MayHaveExtensions() bool {
    	return t.full != nil ||
    		int(t.language) >= len(coreTags) ||
    		t.language != t.locale
    }
    
    // IsRoot returns true if t is equal to language "und".
    func (t Tag) IsRoot() bool {
    	if t.full != nil {
    		return t.full.IsRoot()
    	}
    	return t.language == _und
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPlugin.java

            project.getPluginManager().apply(LifecycleBasePlugin.class);
    
            // Create Visual Studio project extensions
            final VisualStudioExtensionInternal extension;
            if (isRoot()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/NameOnlyFingerprintingStrategy.java

                @Override
                public void visitAcceptedEntry(FileSystemLocationSnapshot snapshot, boolean isRoot) {
                    String absolutePath = snapshot.getAbsolutePath();
                    if (getDirectorySensitivity().shouldFingerprint(snapshot)) {
                        if (isRoot && snapshot.getType() == FileType.Directory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/RelativePathSupplier.java

     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    import java.util.Collection;
    
    public interface RelativePathSupplier {
        boolean isRoot();
    
        Collection<String> getSegments();
    
        String toRelativePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 810 bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        ],
        repositories = [
            "https://repo.maven.apache.org/maven2/"
        ],
    )
    """
        }
    
        String generateBuildFile(Integer subProjectNumber, DependencyTree dependencyTree) {
            def isRoot = subProjectNumber == null
            def subProjectNumbers = dependencyTree.getChildProjectIds(subProjectNumber)
            def transitiveSubProjectNumbers = []
            subProjectNumbers?.each { n ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

                        if (!processedEntries.add(absolutePath)) {
                            return;
                        }
    
                        FileSystemLocationFingerprint fingerprint;
                        if (relativePath.isRoot()) {
                            fingerprint = IgnoredPathFileSystemLocationFingerprint.create(snapshot.getType(), normalizedContentHash);
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top