Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 292 for hierarchyOf (0.26 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *
         * @see #getModuleNames()
         */
        private final Map<Path, String> descriptors;
    
        /**
         * Whether module hierarchy was detected. If false, then package hierarchy is assumed.
         * In a package hierarchy, the {@linkplain #descriptors} map has either zero or one entry.
         * In a module hierarchy, the descriptors map may have an arbitrary number of entries,
         * including one (so the map size cannot be used as a criterion).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     * indeed receives file system events from the operating system.
     * This is to avoid trusting locations where OSs silently not send any events, despite watchers being registered.
     *
     * When the hierarchy is first registered via {@link #registerProbe(File)}, we don't yet create the probe.
     * That only happens when the hierarchy is actually read or written by Gradle, in which case
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyConfigurationHelper.java

        }
    
        ImmutableList<ModuleComponentArtifactMetadata> filterArtifacts(String name, Collection<String> hierarchy) {
            Set<ModuleComponentArtifactMetadata> artifacts = new LinkedHashSet<>();
            collectArtifactsFor(name, artifacts);
            for (String parent : hierarchy) {
                collectArtifactsFor(parent, artifacts);
            }
            return ImmutableList.copyOf(artifacts);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/podcgroupns.go

    		}
    		return r
    	}, uid))
    }
    
    // Cgroup represents a linux cgroup.
    type Cgroup struct {
    	HierarchyID    string
    	ControllerList string
    	GroupPath      string
    }
    
    // GetCGroups returns a slice of cgroups for pid using fs for filesystem calls.
    //
    // The expected cgroup format is "hierarchy-ID:controller-list:cgroup-path", and
    // this function will return an error if every cgroup does not meet that format.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchyRoot.java

    import org.gradle.internal.snapshot.VfsRelativePath;
    
    import javax.annotation.CheckReturnValue;
    
    /**
     * Structure for tracking modifications in a hierarchy.
     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchyRoot {
        private final CaseSensitivity caseSensitivity;
        private final VersionHierarchy rootNode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/RealisedConfigurationMetadata.java

        ) {
            this(componentId, name, transitive, visible, hierarchy, artifacts, excludes, componentLevelAttributes, capabilities, null, addedByRule, externalVariant);
        }
    
        public RealisedConfigurationMetadata(
                ModuleComponentIdentifier componentId,
                String name,
                boolean transitive,
                boolean visible,
                ImmutableSet<String> hierarchy,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/ClassLoaderHierarchyHasher.java

     */
    
    package org.gradle.internal.hash;
    
    import javax.annotation.Nullable;
    
    /**
     * Provides a combined hash for a hierarchy of classloaders.
     */
    public interface ClassLoaderHierarchyHasher {
        /**
         * Returns a hash for the given classloader hierarchy, or {@code null}
         * if the hierarchy contains any classloaders that are not known to Gradle.
         */
        @Nullable
        HashCode getClassLoaderHash(ClassLoader classLoader);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

        }
    
        /**
         * Visits all types in a type hierarchy in breadth-first order, super-classes first and then implemented interfaces.
         *
         * @param clazz the type of whose type hierarchy to visit.
         * @param excludedTypes the types not to walk when encountered in the hierarchy.
         * @param visitor the visitor to call for each type in the hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

    /**
     * Node in a structure for tracking modifications in a hierarchy.
     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchy {
        private final long version;
        // We store the maximum version as a performance optimization, so we don't need
        // to query the children every time we query the version for a hierarchy.
        private final long maxVersionInHierarchy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableMavenModuleResolveMetadataTest.groovy

            immutable.getConfiguration("compile").hierarchy as List == ["compile"]
            immutable.getConfiguration("runtime").hierarchy as List == ["runtime", "compile"]
            immutable.getConfiguration("master").hierarchy as List == ["master"]
            immutable.getConfiguration("test").hierarchy as List == ["test", "runtime", "compile"]
            immutable.getConfiguration("default").hierarchy as List == ["default", "runtime", "compile", "master"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top