Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 142 for hierarchyOf (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchies.java

            outputHierarchy.clear();
            destroyableHierarchy.clear();
        }
    
        /**
         * Create the input node access hierarchy.
         *
         * For performance reasons, we keep one input node access hierarchy per project,
         * so we only have a factory method here and this is used to create the hierarchy in {@link org.gradle.execution.ProjectExecutionServices}.
         */
        public InputNodeAccessHierarchy createInputHierarchy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *     <dd>The list of file system hierarchies that we've activated a file system probe for.
     *     We list every hierarchy here, even if there are ones nested inside others.
     *     See {@link FileWatcherProbeRegistry}.</dd>
     * </dl>
     */
    public interface FileWatcherUpdater {
        /**
         * Registers a watchable hierarchy.
         *
         * @see FileWatcherRegistry#registerWatchableHierarchy(File, SnapshotHierarchy)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/RealisedIvyModuleResolveMetadata.java

            ImmutableSet<String> hierarchy = LazyToRealisedModuleComponentResolveMetadataHelper.constructHierarchy(configuration, configurationDefinitions);
            ImmutableList<ExcludeMetadata> excludes = configurationHelper.filterExcludes(hierarchy);
    
            ImmutableList<ModuleComponentArtifactMetadata> artifacts = configurationHelper.filterArtifacts(configurationName, hierarchy);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

                return null;
            }
    
            ImmutableSet<String> hierarchy = constructHierarchy(descriptorConfiguration);
            boolean transitive = descriptorConfiguration.isTransitive();
            boolean visible = descriptorConfiguration.isVisible();
            return createConfiguration(getId(), name, transitive, visible, hierarchy, variantMetadataRules);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top