Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 292 for hierarchyOf (0.23 sec)

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

                if (watchedFiles.contains(watchableHierarchy)) {
                    // Need to stop watching this hierarchy
                    return !hasSnapshotsToWatch;
                } else {
                    // Need to start watching this hierarchy
                    return hasSnapshotsToWatch;
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    //
    // If NUMA nodes are higher than sockets in the memory hierarchy, they are sorted by ascending number
    // of free CPUs that they contain. "higher than sockets in the memory hierarchy" means that NUMA nodes
    // contain a bigger number of CPUs (free and busy) than sockets, or equivalently that each NUMA node
    // contains more than one socket.
    //
    // If instead NUMA nodes are lower in the memory hierarchy than sockets, they are sorted as follows.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top