Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 533 for Visiting (0.11 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

        }
    
        def "instance walker should allow visiting null nested values"() {
            given:
            def instance = new Object() {
                @TestNested
                NestedType getNested() {
                    return null
                }
                @TestNested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/types/ExternalPluginsInstrumentationTypeRegistry.java

    import java.util.concurrent.ConcurrentHashMap;
    import java.util.stream.Collectors;
    
    /**
     * {@link InstrumentationTypeRegistry} for checking type information for external plugins.
     * It combines data of direct super types that when visiting external plugins classes and Gradle core types data, to calculated final information for external types.
     */
    public class ExternalPluginsInstrumentationTypeRegistry implements InstrumentationTypeRegistry {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 10:00:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

         * <p>
         * {@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.
         */
        void file(VisitState state);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

         *
         * After cleaning up the files, the empty directories are removed as well.
         */
        public void cleanupOutputs(FileSystemSnapshot snapshot) throws IOException {
            // TODO We could make this faster by visiting the snapshot
            for (Map.Entry<String, FileSystemLocationSnapshot> entry : SnapshotUtil.indexByAbsolutePath(snapshot).entrySet()) {
                cleanupOutput(new File(entry.getKey()), entry.getValue().getType());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistry.java

            this.defaultArtifactAttributes = attributesFactory.mutable();
        }
    
        @Override
        public void visitArtifactTypes(Consumer<? super ImmutableAttributes> action) {
            // Apply default attributes before visiting
            Consumer<? super ImmutableAttributes> visitor = attributes -> {
                ImmutableAttributes attributesPlusDefaults = attributesFactory.concat(defaultArtifactAttributes.asImmutable(), attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 15:55:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

                    }
                    // else, might be a link which points to nothing, or has been removed while we're visiting, or ...
                    throw new GradleException(String.format("Could not list contents of '%s'.", file));
                }
                for (File child : children) {
                    if (stopFlag.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphResolver.java

            this.moduleResolveStateFactory = moduleResolveStateFactory;
            this.dependencyGraphBuilder = dependencyGraphBuilder;
        }
    
        /**
         * Perform a graph resolution, visiting the resolved graph with the provided visitor.
         *
         * <p>We should keep this class independent of
         * {@link org.gradle.api.internal.artifacts.ResolveContext} and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:35 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top