Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultLocalComponentGraphResolveState (0.54 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

     *
     * <p>The aim is to create only a single instance of this type per project and reuse that for all resolution that happens in a build tree. This isn't quite the case yet.
     */
    public class DefaultLocalComponentGraphResolveState extends AbstractComponentGraphResolveState<LocalComponentGraphResolveMetadata> implements LocalComponentGraphResolveState {
        private final ComponentIdGenerator idGenerator;
        private final boolean adHoc;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactory.java

                calculatedValueContainerFactory
            );
    
            return createLocalComponentState(componentIdentifier, moduleVersionId, status, schema, adHoc, configurationFactory);
        }
    
        private DefaultLocalComponentGraphResolveState createLocalComponentState(
            ComponentIdentifier componentIdentifier,
            ModuleVersionIdentifier moduleVersionId,
            String status,
            AttributesSchemaInternal schema,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

    import javax.annotation.Nullable;
    import java.util.Set;
    import java.util.function.Consumer;
    
    /**
     * Constructs {@link LocalConfigurationGraphResolveMetadata} instances advertised by a
     * {@link DefaultLocalComponentGraphResolveState} instance. This allows the component state to
     * source configuration data from multiple sources, both lazy and eager.
     */
    public interface ConfigurationMetadataFactory {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top