Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 142 for hierarchyOf (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecInternal.java

        @Nullable
        File getDestinationDir();
    
        /**
         * Listener triggered when a spec is added to the hierarchy.
         */
        interface CopySpecListener {
            void childSpecAdded(CopySpecAddress path, CopySpecInternal spec);
        }
    
        /**
         * A visitor to traverse the spec hierarchy.
         */
        interface CopySpecVisitor {
            void visit(CopySpecAddress address, CopySpecInternal spec);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    //   - Names may contain at most one ':'. In the counter "foo:bar", we refer to
    //     "foo" as the "chart name" and "bar" as the "bucket name".
    //
    //   - The '/' character should partition counter names into a hierarchy. The
    //     root of this hierarchy should identify the logical entity that "owns"
    //     the counter. This could be an application, such as "gopls" in the case
    //     of "gopls/client:vscode", or a shared library, such as "crash" in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

         */
        Optional<HashCode> readRegularFileContentHash(String location);
    
        /**
         * Reads the hierarchy of files at the given location.
         */
        FileSystemLocationSnapshot read(String location);
    
        /**
         * Visits the hierarchy of files which match the filter at the given location.
         *
         * Returns empty {@link Optional} if filter doesn't match anything.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

     *
     * @since 8.8
     */
    @Incubating
    public interface IsolatedProject {
    
        /**
         * <p>Returns the name of this project. The project's name is not necessarily unique within a project hierarchy. You
         * should use the {@link #getPath()} method for a unique identifier for the project.
         * If the root project is unnamed and is located on a file system root it will have a randomly-generated name
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top