Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 470 for roots (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultFileOperations.java

            action.execute(deleteSpec);
            FileCollectionInternal roots = fileCollectionFactory.resolving(deleteSpec.getPaths());
            boolean didWork = false;
            for (File root : roots) {
                try {
                    didWork |= deleter.deleteRecursively(root, deleteSpec.isFollowSymlinks());
                } catch (IOException ex) {
                    throw new UncheckedIOException(ex);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. cmd/importverifier/importverifier.go

    // trees for a tree of source code
    type ImportRestriction struct {
    	// BaseDir is the root of a package tree that is restricted by this
    	// configuration, given as a relative path from the root of the repository.
    	// This is a directory which `go list` might not consider a package (if it
    	// has not .go files)
    	BaseDir string `yaml:"baseImportPath"`
    	// IgnoredSubTrees are roots of sub-trees of the BaseDir for which we do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

        }
    
        @Override
        public Map<String, FileSystemLocationFingerprint> collectFingerprints(FileSystemSnapshot roots) {
            ImmutableMap.Builder<String, FileSystemLocationFingerprint> builder = ImmutableMap.builder();
            HashSet<String> processedEntries = new HashSet<>();
            roots.accept(new RelativePathTracker(), new ClasspathFingerprintingVisitor(processedEntries, builder));
            return builder.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractFileSystemLocationSnapshot.java

            return missingSnapshotForAbsolutePath(relativePath.getAbsolutePath());
        }
    
        @Override
        public Stream<FileSystemLocationSnapshot> roots() {
            return Stream.of(this);
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationSourceDirs.java

            }
    
            @Override
            public void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree) {
                // We need to add missing files as source roots, since the package name for deleted files provided by InputChanges also need to be determined.
                if (!root.exists() || root.isDirectory()) {
                    sourceRoots.add(root);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerSpanRoot = 512
    )
    
    // gcMarkRootPrepare queues root scanning jobs (stacks, globals, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

            succeeds "t"
            scopeIds.lastBuildPaths() == [":", ":a", ":a:buildSrc", ":b", ":b:buildSrc"]
        }
    
        def "gradle-build builds with different root does not inherit workspace id"() {
            given:
            // GradleBuild launched builds with a different root dir
            // are not considered to be of the same workspace
            scopeIds.disableConsistentWorkspaceIdCheck = true
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

         * it is testing the fallback behavior of [SourcePathProvider]
         */
        @Test
        fun `given buildSrc folder, it will fallback to approximate buildSrc source roots`() {
            withFolders {
                "project" {
                    "buildSrc/src/main" {
                        +"foo"
                        +"bar"
                    }
                }
                "gradle" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

         */
        @CheckReturnValue
        SnapshotHierarchy empty();
    
        CaseSensitivity getCaseSensitivity();
    
        /**
         * Returns all root snapshots in the hierarchy.
         */
        Stream<FileSystemLocationSnapshot> rootSnapshots();
    
        /**
         * Returns all root snapshots in the hierarchy below {@code absolutePath}.
         */
        Stream<FileSystemLocationSnapshot> rootSnapshotsUnder(String absolutePath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice.go

    		rootVs := root.Spec.(*networking.VirtualService)
    		mergedRoutes := []*networking.HTTPRoute{}
    		for _, route := range rootVs.Http {
    			// it is root vs with delegate
    			if delegate := route.Delegate; delegate != nil {
    				delegateNamespace := delegate.Namespace
    				if delegateNamespace == "" {
    					delegateNamespace = root.Namespace
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top