Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 155 for hierarchyOf (0.29 sec)

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

    import org.gradle.internal.snapshot.VfsRelativePath;
    
    import javax.annotation.CheckReturnValue;
    
    /**
     * Structure for tracking modifications in a hierarchy.
     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchyRoot {
        private final CaseSensitivity caseSensitivity;
        private final VersionHierarchy rootNode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/RealisedConfigurationMetadata.java

        ) {
            this(componentId, name, transitive, visible, hierarchy, artifacts, excludes, componentLevelAttributes, capabilities, null, addedByRule, externalVariant);
        }
    
        public RealisedConfigurationMetadata(
                ModuleComponentIdentifier componentId,
                String name,
                boolean transitive,
                boolean visible,
                ImmutableSet<String> hierarchy,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/ClassLoaderHierarchyHasher.java

     */
    
    package org.gradle.internal.hash;
    
    import javax.annotation.Nullable;
    
    /**
     * Provides a combined hash for a hierarchy of classloaders.
     */
    public interface ClassLoaderHierarchyHasher {
        /**
         * Returns a hash for the given classloader hierarchy, or {@code null}
         * if the hierarchy contains any classloaders that are not known to Gradle.
         */
        @Nullable
        HashCode getClassLoaderHash(ClassLoader classLoader);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

        }
    
        /**
         * Visits all types in a type hierarchy in breadth-first order, super-classes first and then implemented interfaces.
         *
         * @param clazz the type of whose type hierarchy to visit.
         * @param excludedTypes the types not to walk when encountered in the hierarchy.
         * @param visitor the visitor to call for each type in the hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

    /**
     * Node in a structure for tracking modifications in a hierarchy.
     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchy {
        private final long version;
        // We store the maximum version as a performance optimization, so we don't need
        // to query the children every time we query the version for a hierarchy.
        private final long maxVersionInHierarchy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

    /**
     * Searches an ObjectOrigin receiver hierarchy to find the parent software type or throws an error if a software type
     * is not in the hierarchy.
     */
    private
    fun getSoftwareType(objectOrigin: ObjectOrigin): ObjectOrigin.AccessAndConfigureReceiver =
        findSoftwareType(objectOrigin) ?: error("Could not discover softwareType for $objectOrigin")
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalConfigurationMetadata.java

        ) {
            this.name = name;
            this.description = description;
            this.componentId = componentId;
            this.visible = visible;
            this.transitive = transitive;
            this.hierarchy = ImmutableSet.copyOf(hierarchy);
            this.attributes = attributes;
            this.capabilities = capabilities;
            this.canBeConsumed = canBeConsumed;
            this.deprecatedForConsumption = deprecatedForConsumption;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultIvyModuleResolveMetadataTest.groovy

        }
    
        def "builds and caches hierarchy for a configuration"() {
            given:
            configuration("a")
            configuration("b", ["a"])
            configuration("c", ["a"])
            configuration("d", ["b", "c"])
    
            when:
            def md = metadata
    
            then:
            md.getConfiguration("a").hierarchy as List == ["a"]
            md.getConfiguration("b").hierarchy as List  == ["b", "a"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderSpec.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classloader;
    
    import java.io.Serializable;
    
    /**
     * An immutable description of a ClassLoader hierarchy that can be used to recreate the hierarchy in a different process.
     *
     * Subclasses should implement equals() and hashCode(), so that the spec can be used as a hashmap key.
     */
    public abstract class ClassLoaderSpec implements Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 991 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/package-info.java

     * limitations under the License.
     */
    
    /**
     * Exceptions thrown when variant selection fails.
     *
     * The hierarchy of exceptions here should be kept small, and in sync with the 2
     * main branches of the {@link org.gradle.internal.component.resolution.failure.type.ResolutionFailure ResolutionFailure}
     * hierarchy, which represent a failure to select a variant of a component, and a failure to select
     * a configuration by name.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top