Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for hierarchyOf (0.17 sec)

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

        @Nullable
        File getDestinationDir();
    
        /**
         * Listener triggered when a spec is added to the hierarchy.
         */
        interface CopySpecListener {
            void childSpecAdded(CopySpecAddress path, CopySpecInternal spec);
        }
    
        /**
         * A visitor to traverse the spec hierarchy.
         */
        interface CopySpecVisitor {
            void visit(CopySpecAddress address, CopySpecInternal spec);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    //   - Names may contain at most one ':'. In the counter "foo:bar", we refer to
    //     "foo" as the "chart name" and "bar" as the "bucket name".
    //
    //   - The '/' character should partition counter names into a hierarchy. The
    //     root of this hierarchy should identify the logical entity that "owns"
    //     the counter. This could be an application, such as "gopls" in the case
    //     of "gopls/client:vscode", or a shared library, such as "crash" in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top