Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for hierarchyOf (0.55 sec)

  1. 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)
  2. 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)
  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. 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)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

        }
    
        def "findSnapshot returns root node when queried at the root"() {
            def rootNode = Mock(FileSystemNode)
            def hierarchy = DefaultSnapshotHierarchy.from(rootNode, CASE_SENSITIVE)
    
            when:
            def foundSnapshot = hierarchy.findMetadata("/")
            then:
            foundSnapshot.present
            1 * rootNode.snapshot >> Optional.of(Mock(MetadataSnapshot))
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadataSerializationHelper.java

            ImmutableSet<String> hierarchy = ImmutableSet.copyOf(readStringSet(decoder));
            List<ExcludeMetadata> excludeMetadata = readMavenExcludes(decoder);
            RealisedConfigurationMetadata realized = new RealisedConfigurationMetadata(
                resolveMetadata.getId(),
                name,
                transitive,
                visible,
                hierarchy,
                artifacts,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top