Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 464 for Visiting (0.1 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultInputFingerprinterTest.groovy

            then:
            0 * _
    
            then:
            result.valueSnapshots as Map == [:]
            result.fileFingerprints as Map == [:]
        }
    
        def "reuses previous input snapshots when visiting input properties"() {
            def previousSnapshot = Mock(ValueSnapshot)
    
            when:
            def result = fingerprintInputProperties(ImmutableSortedMap.of("identity", previousSnapshot)) { visitor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/io/fs/walk.go

    			}
    			return err
    		}
    	}
    	return nil
    }
    
    // WalkDir walks the file tree rooted at root, calling fn for each file or
    // directory in the tree, including root.
    //
    // All errors that arise visiting files and directories are filtered by fn:
    // see the [fs.WalkDirFunc] documentation for details.
    //
    // The files are walked in lexical order, which makes the output deterministic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

                 * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
                 */
                void preDirectory(VisitState state);
    
                /**
                 * Called when visiting a non-directory file.
                 * <p>
                 * {@link VisitState#getName()}, {@link VisitState#getPath()} and {@link VisitState#getHashBytes()} may be called during.
                 */
    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. ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc

    build --distinct_host_configuration=false
    
    # Store performance profiling log in the mounted artifact directory.
    # The profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    build --profile=/tf/pkg/profile.json.gz
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListener.java

                return transformSteps;
            }
    
            @Override
            public void prepareForVisitingIfNotAlready() {
                // The parameters of the transforms should already be isolated prior to visiting this set.
                // However, in certain cases, the transform's parameters may not be isolated (eg https://github.com/gradle/gradle/issues/23116), so do this now
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    build --copt=-Wno-gnu-offsetof-extensions
    
    # Store performance profiling log in the mounted artifact directory.
    # The profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    build --profile=/tf/pkg/profile.json.gz
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionTest.groovy

            then:
            1 * visitor.startVisit(_, collection) >> true
            1 * source1.visitStructure(visitor)
            1 * source2.visitStructure(visitor)
            0 * _
        }
    
        void "listener can skip visiting children"() {
            def visitor = Mock(FileCollectionStructureVisitor)
            def source1 = Mock(FileCollectionInternal)
            def source2 = Mock(FileCollectionInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/resource/local/DefaultPathKeyFileStore.java

                    // We cannot clean in progress markers, or in progress files here because
                    // the file system visitor stuff can't handle the file system mutating while visiting
                    if (!isInProgressMarkerFile(file) && !isInProgressFile(file)) {
                        entries.add(entryAt(file));
                    }
                }
            });
    
            return entries;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/covdata/subtractintersect.go

    		if _, found := s.imm[k]; !found {
    			delete(s.mm.pod.pmm, k)
    		}
    	}
    	s.imm = nil
    }
    
    func (s *sstate) BeginCounterDataFile(cdf string, cdr *decodecounter.CounterDataReader, dirIdx int) {
    	dbgtrace(2, "visiting counter data file %s diridx %d", cdf, dirIdx)
    	if s.inidx != dirIdx {
    		if s.inidx > dirIdx {
    			// We're relying on having data files presented in
    			// the order they appear in the inputs (e.g. first all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

            Set<Node> visited = new HashSet<>();
            Set<Node> visiting = new HashSet<>();
            while (!queue.isEmpty()) {
                Node node = queue.get(0);
                if (node.isComplete() || visited.contains(node)) {
                    queue.remove(0);
                    continue;
                }
                if (visiting.add(node)) {
                    int pos = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
Back to top