Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 367 for resolution1 (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * There is no validation that an ignored dependency is present in any configuration resolution.
    * If the dependency is present in lock state, loading it will filter out the dependency.
    * If the dependency is present in the resolution result, it will be ignored when validating that resolution matches the lock state.
    * Finally, if the dependency is present in the resolution result and the lock state is persisted, it will be absent from the written lock state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            1 * owner.getCapitalizedDisplayName() >> "Owner"
            ex.message == 'Locking strict mode: Owner is locked but does not have lock state.'
            ex.resolutions == ["To create the lock state, run a task that performs dependency resolution and add '--write-locks' to the command line.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/eds_test.go

    		})
    	}
    }
    
    // Validates the behavior when Service resolution type is updated after initial EDS push.
    // See https://github.com/istio/istio/issues/18355 for more details.
    func TestEDSServiceResolutionUpdate(t *testing.T) {
    	for _, resolution := range []model.Resolution{model.DNSLB, model.DNSRoundRobinLB} {
    		t.Run(fmt.Sprintf("resolution_%s", resolution), func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[resolution_rules]]
    = Customizing resolution of a dependency directly
    
    This section covers mechanisms Gradle offers to directly influence the behavior of the dependency resolution engine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. maven-model-builder/pom.xml

                  <exclude>org.apache.maven.model.resolution.InvalidRepositoryException#getRepository():METHOD_RETURN_TYPE_CHANGED</exclude>
                  <exclude>org.apache.maven.model.resolution.InvalidRepositoryException#InvalidRepositoryException(java.lang.String,org.apache.maven.model.Repository,java.lang.Throwable):CONSTRUCTOR_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/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
    - 10.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top