Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 434 for Resolution (0.55 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

            1 -> {
                val resolution = overloads.single()
                doProduceAndHandleFunctionResult(resolution, argResolutions.value, functionCall, resolution.receiver)
            }
    
            else -> {
                errorCollector.collect(ResolutionError(functionCall, ErrorReason.AmbiguousFunctions(overloads)))
                null
            }
        }
    
        // TODO: check the resolution order with the Kotlin spec
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub:terminology_resolution_rule]]
    == Resolution rule
    
    A resolution rule influences the behavior of how a <<#sub:terminology_dependency,dependency>> is resolved directly.
    Resolution rules are defined as part of the build logic.
    For more information, see the section on <<resolution_rules.adoc#resolution_rules,customizing resolution of a dependency directly>>.
    
    [[sub:terminology_transitive_dependency]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

    import org.eclipse.aether.repository.RemoteRepository;
    import org.eclipse.aether.resolution.ArtifactRequest;
    import org.eclipse.aether.resolution.ArtifactResolutionException;
    import org.eclipse.aether.resolution.VersionRangeRequest;
    import org.eclipse.aether.resolution.VersionRangeResolutionException;
    import org.eclipse.aether.resolution.VersionRangeResult;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

    import spock.lang.Issue
    
    /**
     * Common location for resolution tests that are related to user-reported issues.
     *
     * Once these issues are resolved, we should make sure to  move these tests to a
     * file more appropriate for the feature they are testing.
     */
    class ResolutionIssuesIntegrationTest extends AbstractIntegrationSpec {
    
        @NotYetImplemented
        def "resolution hits isConstraint assertion"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. pkg/dns/server/name_table_test.go

    		DefaultAddress: constants.UnspecifiedIP,
    		Ports: model.PortList{&model.Port{
    			Name:     "tcp-port",
    			Port:     9000,
    			Protocol: protocol.TCP,
    		}},
    		Resolution: model.Passthrough,
    		Attributes: model.ServiceAttributes{
    			Name:            "headless-svc",
    			Namespace:       "testns",
    			ServiceRegistry: provider.Kubernetes,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

    import org.eclipse.aether.repository.WorkspaceReader;
    import org.eclipse.aether.resolution.MetadataRequest;
    import org.eclipse.aether.resolution.MetadataResult;
    import org.eclipse.aether.resolution.VersionRangeRequest;
    import org.eclipse.aether.resolution.VersionRangeResolutionException;
    import org.eclipse.aether.resolution.VersionRangeResult;
    import org.eclipse.aether.spi.synccontext.SyncContextFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                    ((ResolutionProvider) failure).getResolutions().forEach(resolution -> {
                        if (!resolution.startsWith(ResolutionFailureHandler.DEFAULT_MESSAGE_PREFIX) && uniqueResolutions.add(resolution)) {
                            formatter.node(resolution);
                        }
                    });
                }
    
                if (alreadyReportedErrors.contains(cause)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    May be followed by a `because` text.
    
    | By conflict resolution : between versions <version>
    | The dependency appeared multiple times, with different version requests.
    This resulted in <<dependency_resolution#sec:version-conflict, conflict resolution>> to select the most appropriate version.
    
    | By constraint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

        /**
         * An immutable data class that holds information about a single variant which was a candidate for matching during resolution.
         *
         * This includes classifying its attributes into lists of compatible, incompatible, and absent attributes.  Each candidate
         * is assessed within the context of a resolution, but must not reference the assessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    module("org:first-level:1.0")
                    module("org:foo:1.0")
                }
            }
        }
    
        void "dependency constraint is not included in resolution without a hard dependency"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0'()
                'org:first-level:1.0' {
                    constraint 'org:foo:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top