Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,171 for resolution_ (0.25 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/InputHandlingNativeDependencyResolver.java

        public void resolve(NativeBinaryResolveResult nativeBinaryResolveResult) {
            for (NativeBinaryRequirementResolveResult resolution : nativeBinaryResolveResult.getPendingResolutions()) {
                if (resolution.getInput() instanceof NativeDependencySet) {
                    resolution.setNativeDependencySet((NativeDependencySet) resolution.getInput());
                }
            }
            delegate.resolve(nativeBinaryResolveResult);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/resolutionRules/groovy/settings.gradle

    end::plugin-resolution-strategy[]
    
    rootProject.name = 'resolution-rules'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 495 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

         * The configuration remains immutable if resolution has already occurred. Any hooks or actions which
         * ran when the configuration was originally resolved may or may not run again if this configuration
         * is resolved again. Any side-effects or external caching which occur as a part of or
         * after this configuration's resolution are not reversed or invalidated.  Note that calling this method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/resolutionRules/kotlin/settings.gradle.kts

    // end::plugin-resolution-strategy[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 509 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/README.adoc

    > ./gradlew -q listResolvedArtifacts
    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/listResolvedArtifacts.out[]
    
    BUILD SUCCESSFUL in 1s
    1 actionable task: 1 executed
    ----
    =====
    =====
    [.sample-command]
    ----
    > ./gradlew -q graphResolvedComponents
    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/graphResolvedComponents.out[]
    
    BUILD SUCCESSFUL in 1s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>The type of dependency.</description>
            </field>
          </fields>
        </class>
    
        <class xdoc.anchorName="resolution">
          <name>Resolution</name>
          <version>2.0.0+</version>
          <description>Dependency collection or resolution injection.</description>
          <fields>
            <field>
              <name>field</name>
              <required>false</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentResolveResult.java

         *
         * @throws org.gradle.internal.resolve.ModuleVersionResolveException If resolution was unsuccessful and the id is unknown.
         */
        ModuleVersionIdentifier getModuleVersionId() throws ModuleVersionResolveException;
    
        /**
         * Returns the graph resolution state for the component.
         *
         * @throws ModuleVersionResolveException If resolution was unsuccessful and the descriptor is not available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictException.java

        private final Collection<Conflict> conflicts;
    
        private final List<String> resolutions;
    
        public VersionConflictException(Collection<Conflict> conflicts, List<String> resolutions) {
            super(buildMessage(conflicts));
            this.conflicts = conflicts;
            this.resolutions = resolutions;
        }
    
        public Collection<Conflict> getConflicts() {
            return conflicts;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

        /**
         * Returns the public view of all variants of this component that are available for variant selection, either during graph resolution or artifact resolution.
         */
        List<ResolvedVariantResult> getAllSelectableVariantResults();
    
        /**
         * Returns the candidates for variant selection during graph resolution.
         */
        GraphSelectionCandidates getCandidatesForGraphVariantSelection();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

        /**
         * Returns all the candidates considered during [overload resolution](https://kotlinlang.org/spec/overload-resolution.html) for the call
         * corresponding to this [KtElement].
         *
         * [resolveCallOld] only returns the final result of overload resolution, i.e., the selected callable after considering candidate
         * applicability and choosing the most specific candidate.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top