Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 259 for hierarchyOf (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                }
            });
    
            // Collect all dependencies and excludes in hierarchy.
            // After running the dependency actions and preventing from mutation above, we know the
            // hierarchy will not change anymore and all configurations in the hierarchy
            // will no longer be mutated.
            ImmutableSet<String> hierarchy = Configurations.getNames(configuration.getHierarchy());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

    /**
     * Searches an ObjectOrigin receiver hierarchy to find the parent software type or throws an error if a software type
     * is not in the hierarchy.
     */
    private
    fun getSoftwareType(objectOrigin: ObjectOrigin): ObjectOrigin.AccessAndConfigureReceiver =
        findSoftwareType(objectOrigin) ?: error("Could not discover softwareType for $objectOrigin")
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top