Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 274 for Hierarchy (0.23 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

         */
        Optional<HashCode> readRegularFileContentHash(String location);
    
        /**
         * Reads the hierarchy of files at the given location.
         */
        FileSystemLocationSnapshot read(String location);
    
        /**
         * Visits the hierarchy of files which match the filter at the given location.
         *
         * Returns empty {@link Optional} if filter doesn't match anything.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

        }
    
        def "findSnapshot returns root node when queried at the root"() {
            def rootNode = Mock(FileSystemNode)
            def hierarchy = DefaultSnapshotHierarchy.from(rootNode, CASE_SENSITIVE)
    
            when:
            def foundSnapshot = hierarchy.findMetadata("/")
            then:
            foundSnapshot.present
            1 * rootNode.snapshot >> Optional.of(Mock(MetadataSnapshot))
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

    import org.gradle.internal.file.impl.DefaultFileMetadata
    import org.gradle.internal.hash.TestHashCodes
    
    class DirectorySnapshotTest extends AbstractFileSystemLocationSnapshotTest {
        def "snapshot hierarchy accessed directly is relocated"() {
            def testDirectory = temporaryFolder.createDir("test")
            def sourceDir = testDirectory.createDir("source-directory")
            def childDir = sourceDir.createDir("child")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadataWalker.java

     */
    public interface TypeMetadataWalker<T, V extends TypeMetadataWalker.TypeMetadataVisitor<T>> {
    
        /**
         * A factory method for a walker that can visit the property hierarchy of an instance.
         *
         * When visiting a nested property, child properties are discovered using the type of the
         * return property value. This can be a more specific type than the return type of the property's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtilsTest.groovy

            @Override String someOverloadedMethod(int param)
            @Override String someOverriddenCovariantMethod(Object param)
        }
    
        def "gets overridden methods from type hierarchy"() {
            expect:
            def overridden = ModelSchemaUtils.getCandidateMethods(SubTypeWithOverloadedMethods).overriddenMethodsNamed("someOverloadedMethod")
            overridden.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

     *
     * @since 8.8
     */
    @Incubating
    public interface IsolatedProject {
    
        /**
         * <p>Returns the name of this project. The project's name is not necessarily unique within a project hierarchy. You
         * should use the {@link #getPath()} method for a unique identifier for the project.
         * If the root project is unnamed and is located on a file system root it will have a randomly-generated name
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadataSerializationHelper.java

            ImmutableSet<String> hierarchy = ImmutableSet.copyOf(readStringSet(decoder));
            List<ExcludeMetadata> excludeMetadata = readMavenExcludes(decoder);
            RealisedConfigurationMetadata realized = new RealisedConfigurationMetadata(
                resolveMetadata.getId(),
                name,
                transitive,
                visible,
                hierarchy,
                artifacts,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PalantirConsistentVersionsPluginSmokeTest.groovy

                .expectLegacyDeprecationWarning("Mutating the hierarchy of configuration ':apiElements' after it has been resolved or consumed. This behavior has been deprecated. This will fail with an error in Gradle 9.0. After a Configuration has been resolved, consumed as a variant, or used for generating published...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

         * hierarchy containing a symlink, as we can't be sure if the snapshot would still be valid of
         * the relocated link.
         *
         * If performance around symlinks becomes more important, we can improve this in multiple ways:
         * - keep symlinks that don't point outside the relocated snapshot hierarchy,
         * - re-snapshot relocated locations pointed to by snapshots,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/RealisedIvyModuleResolveMetadataSerializationHelper.java

                    transitive = configuration.isTransitive();
                    visible = configuration.isVisible();
                    hierarchy = LazyToRealisedModuleComponentResolveMetadataHelper.constructHierarchy(configuration, configurationDefinitions);
                    excludes = configurationHelper.filterExcludes(hierarchy);
                } else {
                    excludes = ImmutableList.of();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top