Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 298 for hierarchy (0.13 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

        private SnapshotHierarchy removeWatchedHierarchiesOverLimit(SnapshotHierarchy root, Predicate<File> isWatchedHierarchy, int maximumNumberOfWatchedHierarchies, Invalidator invalidator) {
            hierarchies.removeIf(hierarchy -> !isWatchedHierarchy.test(hierarchy));
            SnapshotHierarchy result = root;
            int toRemove = hierarchies.size() - maximumNumberOfWatchedHierarchies;
            if (toRemove > 0) {
                LOGGER.info(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshot.java

    import static org.gradle.internal.snapshot.impl.SerializedLambdaQueries.serializedLambdaFor;
    
    /**
     * Identifies a type in a classloader hierarchy. The type is identified by its name,
     * the classloader hierarchy by its hash code.
     */
    public abstract class ImplementationSnapshot implements ValueSnapshot {
    
        protected final String classIdentifier;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadata.java

            ImmutableSet<String> hierarchy = LazyToRealisedModuleComponentResolveMetadataHelper.constructHierarchy(configuration, configurationDefinitions);
            return createConfiguration(metadata.getId(), configurationName, configuration.isTransitive(), configuration.isVisible(), hierarchy,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

        /**
         * Should we generate a deep and wide hierarchy ("worst case" scenario) or only a wide hierarchy?
         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
         *     several projects.  This tries to replicate a project with many subgroups of interconnected components.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/layout/ResolvedBuildLayout.java

         *
         * <p>There are two cases where this might be true: Gradle was invoked from a directory where there is no build script and no settings script in the directory hierarchy,
         * or Gradle was invoked from a directory where there is a settings script in the directory hierarchy but the directory is not a project directory for any project defined
         * in that settings script.</p>
         */
        public boolean isBuildDefinitionMissing() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/DefaultMavenModuleResolveMetadata.java

                && dependencyScope != MavenScope.System;
        }
    
        private boolean include(MavenDependencyDescriptor dependency, Collection<String> hierarchy) {
            if (dependency.isOptional()) {
                return false;
            }
            return hierarchy.contains(dependency.getScope().getLowerName());
        }
    
        @Override
        public MutableMavenModuleResolveMetadata asMutable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/NameValidationIntegrationTest.groovy

        }
    
        def "task names must not contain forbidden characters"() {
            given:
            buildFile << "task 'this/is/a/hierarchy'"
    
            when:
            fails 'this/is/a/hierarchy'
    
            then:
            assertFailureContainsForbiddenCharacterMessage('task name',"this/is/a/hierarchy")
        }
    
        def "configuration names must not contain forbidden characters"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/InstrumentationAnalysisTransform.java

                    collector.add(dependencyDescriptor);
                }
            });
        }
    
        /**
         * We write types hierarchy and metadata with dependencies as a separate file, since
         * type hierarchy is an input to {@link MergeInstrumentationAnalysisTransform}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:19:14 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top