Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 142 for hierarchyOf (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacement.kt

    import org.gradle.internal.declarativedsl.analysis.ParameterValueBinding
    
    
    /**
     * Utilities for replacing receivers in an ObjectOrigin hierarchy.
     */
    object OriginReplacement {
        /**
         * Replaces receivers matching a predicate with a replacement receiver.  The replacement returns a deep copy of the receiver hierarchy of the
         * supplied {@link ObjectOrigin} with the given replacement applied.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            new HierarchicalFileWatcherUpdater(watcher, NO_VALIDATION, probeRegistry, watchableHierarchies, movedWatchedDirectoriesSupplier)
        }
    
        @Override
        int getIfNonHierarchical() { 0 }
    
        def "does not watch hierarchy to watch if no snapshot is inside"() {
            def watchableHierarchy = file("watchable").createDir()
            def secondWatchableHierarchy = file("watchable2").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClassLoaderDetails.java

    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.UUID;
    
    public class ClassLoaderDetails implements Serializable {
        // TODO:ADAM - using a UUID means we create a ClassLoader hierarchy for each daemon process we talk to. Instead, use the spec to decide whether to reuse a ClassLoader
        public final UUID uuid;
        public final ClassLoaderSpec spec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            assertBothExistsAndOneIsBeforeOther(hierarchy, middle1, root1);
            assertBothExistsAndOneIsBeforeOther(hierarchy, middle2, root2);
        }
    
        private static void assertBothExistsAndOneIsBeforeOther(Set<Configuration> hierarchy, Configuration beforeConf, Configuration afterConf) {
            assert hierarchy.contains(beforeConf)
            assert hierarchy.contains(afterConf)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    1. We generate interceptors from the annotations declared in the source code 
    2. We collect Gradle API type hierarchy
    
    The first one is important for both configuration cache instrumentation and API upgrades while the second one is used just for API upgrades. 
    Collecting the Gradle API type hierarchy is fully automatic, while declaring interceptors have to be done by Gradle developers. 
    
    ```mermaid
    flowchart TB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExternalModuleDependency.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    /**
     * <p>A {@code ExternalModuleDependency} is a {@link Dependency} on a module outside the current project hierarchy.</p>
     */
    public interface ExternalModuleDependency extends ExternalDependency {
        /**
         * Returns whether or not Gradle should always check for a change in the remote repository.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 02:46:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

         */
        @Override
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the copy destination.
         * <p>
         * Always uses '/' as the hierarchy separator, regardless of platform file separator.
         * Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path, relative to the root of the copy destination. Never returns null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top