Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 232 for hierarchyOf (0.21 sec)

  1. 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)
  2. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            0 * _
        }
    
        def "watchers are stopped when watched hierarchy is moved"() {
            def sourceDir = file("to-be-moved").createDir()
            def targetDir = file("target").createDir()
            def notMovedDir = file("normal").createDir()
            _ * probeRegistry.getProbeDirectory(_) >> { File hierarchy -> new File(hierarchy, ".gradle") }
    
            def watchableHierarchies = [sourceDir, notMovedDir]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/MutationValidator.java

             */
            ROLE("role"),
    
            /**
             * The mutation of the hierarchy of the configuration, i.e. which configurations this configuration extends from.
             */
            HIERARCHY("hierarchy");
    
            private final String displayName;
    
            MutationType(String displayName) {
                this.displayName = displayName;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:26:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest.groovy

        def "emitsBuildOperationsForJUnitTests"() {
            given:
            executer.withRepositoryMirrors()
    
            when:
            run "test"
    
            then: "test build operations are emitted in expected hierarchy"
            def rootTestOp = operations.first(ExecuteTestBuildOperationType)
            rootTestOp.details.testDescriptor.name.startsWith("Gradle Test Run :test")
            rootTestOp.details.testDescriptor.className == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/XRef.java

    import antlr.preprocessor.Hierarchy;
    
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    
    /**
     * Models cross-reference (x-ref) info about {@link GrammarFileMetadata grammar files} such as {@link #filesByPath}, {@link #filesByExportVocab} and {@link #filesByClassName}.
     */
    public class XRef {
        private final Hierarchy antlrHierarchy;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementAdapter.java

         * by getName() is not unique in the hierarchy.
         *
         * @param element the element, cannot be null
         * @return the identity name of the element, never null
         */
        String getIdentityName(T element);
    
        /**
         * Returns the parent in this element's hierarchy.
         *
         * @param element the child element, cannot be null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

         *
         * For example, this removes everything from the root which can't be kept after the current build finished.
         * This is anything which is not within a watchable hierarchy or in a cache directory.
         *
         * @return the snapshot hierarchy without snapshots which can't be kept till the next build.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top