Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,107 for resolveRed (1.47 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginRequestApplicator.java

                PluginResolution resolved = resolvePluginRequest(pluginResolver, request);
    
                resolved.accept(pluginDependencies);
    
                if (request.isApply()) {
                    pluginApplyActions.add(new ApplyAction(request, resolved));
                }
    
                String pluginVersion = resolved.getPluginVersion();
                if (pluginVersion != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 04:49:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

    package org.gradle.api.artifacts;
    
    import org.gradle.api.Action;
    
    /**
     * Provides details about a dependency when it is resolved.
     * Provides means to manipulate dependency metadata when it is resolved.
     *
     * @since 1.4
     */
    public interface DependencyResolveDetails {
    
        /**
         * The module, before it is resolved.
         * The requested module does not change even if there are multiple dependency resolve rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

     * in the resolved dependency graph, and the dependencies between them.
     */
    @UsedByScanPlugin
    @HasInternalProtocol
    public interface ResolutionResult {
    
        /**
         * Gives access to the root of resolved dependency graph.
         * You can walk the graph recursively from the root to obtain information about resolved dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolution.java

    /**
     * The result of attempting to resolve a plugin to a classpath.
     */
    public interface PluginResolution {
    
        /**
         * The ID of the resolved plugin.
         */
        PluginId getPluginId();
    
        /**
         * Accepts a visitor and visits the resolved plugin.
         */
        default void accept(PluginResolutionVisitor visitor) { }
    
        /**
         * Apply the plugin to the provided plugin manager.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 03:54:58 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-precedence.status.yaml.golden

      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: All references resolved
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          group: ""
          kind: Service
          name: b-example
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolverResults.java

                        T componentState = componentForIdResolveResult(componentFactory, idResolveResult, selectorState);
                        if (resolved == null) {
                            resolved = new ArrayList<>();
                        }
                        resolved.add(componentState);
                    } else {
                        if (failure == null) {
                            failure = idResolveResult.getFailure();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/SelfResolvingDependency.java

         * is of type {@link org.gradle.api.artifacts.ProjectDependency}. In this case, if transitive is <code>false</code>,
         * only the self resolving dependencies of the project configuration which are no project dependencies are resolved. If transitive
         * is set to true, other project dependencies belonging to the configuration of the resolved project dependency are
         * resolved recursively.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginResolutionStrategy.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Allows modification of {@link PluginRequest}s before they are resolved.
     *
     * @since 3.5
     */
    @HasInternalProtocol
    public interface PluginResolutionStrategy {
    
        /**
         * Adds an action that is executed for each plugin that is resolved.
         * The {@link PluginResolveDetails} parameter contains information about
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 31 12:25:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/kotlin/build.gradle.kts

    plugins {
        `ivy-publish`
    }
    
    group = "org.gradle.sample"
    version = "1.0"
    
    publishing {
    // tag::customize-descriptor[]
    // tag::versions-resolved[]
        publications {
            create<IvyPublication>("ivyCustom") {
                // end::versions-resolved[]
                descriptor {
                    license {
                        name = "The Apache License, Version 2.0"
                        url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputs.java

        /**
         * A {@link FileCollection} containing all resolved files. The returned collection
         * carries all task dependencies required to build the resolved files, and when used
         * as a task input the files will be built before the task executes.
         */
        FileCollection getFiles();
    
        /**
         * A set of resolved artifacts corresponding to the resolved files.
         */
        ArtifactCollection getArtifacts();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top