Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for resolution_ (0.22 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "Fails resolution because dependency attributes and constraint attributes conflict"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api') {
                        attribute('custom', 'c1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    |===
    | Annotation
    | Expected property type
    | Description
    
    | `@link:{javadocPath}/org/gradle/api/tasks/Input.html[Input]`
    | Any `Serializable` type or dependency resolution result types
    | A simple input value or dependency resolution results
    
    | `@link:{javadocPath}/org/gradle/api/tasks/InputFile.html[InputFile]`
    | `File`*
    | A single input file (not directory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

    import org.apache.maven.model.profile.ProfileInjector;
    import org.apache.maven.model.profile.ProfileSelector;
    import org.apache.maven.model.resolution.InvalidRepositoryException;
    import org.apache.maven.model.resolution.ModelResolver;
    import org.apache.maven.model.resolution.UnresolvableModelException;
    import org.apache.maven.model.resolution.WorkspaceModelResolver;
    import org.apache.maven.model.superpom.SuperPomProvider;
    import org.apache.maven.model.v4.MavenTransformer;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			inps := slices.Map(tt.input, func(e service) *Service {
    				resolution := ClientSideLB
    				if e.ExternalName != "" {
    					resolution = Alias
    				}
    				return &Service{
    					Resolution: resolution,
    					Attributes: ServiceAttributes{
    						K8sAttributes: K8sAttributes{ExternalName: e.ExternalName},
    					},
    					Hostname: e.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. src/time/time.go

    //
    // # Timer Resolution
    //
    // [Timer] resolution varies depending on the Go runtime, the operating system
    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    // On Windows version 1803 and newer, the resolution is ~0.5ms.
    // On older Windows versions, the default resolution is ~16ms, but
    // a higher resolution may be requested using [golang.org/x/sys/windows.TimeBeginPeriod].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    							// only a plain ServiceEntry with resolution NONE. In this case, we will
    							// fallback to a wildcard listener.
    							lb.buildSidecarOutboundListener(listenerOpts, listenerMap, virtualServices, actualWildcards)
    							continue
    						}
    						for _, instance := range instances {
    							// Make sure each endpoint address is a valid address
    							// as service entries could have NONE resolution with label selectors for workload
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			t.Fatalf("i=%v, MeshExternal==%v, should be %v: externalName='%s'", i+1, exp.MeshExternal, svcList[i].MeshExternal, k8sSvcs[i].Spec.ExternalName)
    		}
    		if svcList[i].Resolution != exp.Resolution {
    			t.Fatalf("i=%v, Resolution=='%v', should be '%v'", i+1, svcList[i].Resolution, exp.Resolution)
    		}
    		endpoints := GetEndpoints(svcList[i], controller.Endpoints)
    		assert.Equal(t, len(endpoints), 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('kt') alignsTo('2.9.4.1') byPublishedPlatform()
    
                doesNotGetPlatform("org", "platform", "2.7.9") // because of conflict resolution
                doesNotGetPlatform("org", "platform", "2.9.0") // because of conflict resolution
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:core:2.9.4') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[mutate_configuration_after_locking]]
    ==== Deprecate mutating configuration after observation
    
    To ensure the accuracy of dependency resolution, Gradle checks that Configurations are not mutated after they have been used as part of a dependency graph.
    
    * Resolvable configurations should not have their resolution strategy, dependencies, hierarchy, etc. modified after they have been resolved.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Gradle will no longer ignore dependency resolution errors from a repository when there is another repository it can check. Dependency resolution will fail instead. This results in more deterministic behavior with respect to resolution results.
    
    [[changes_4.2]]
    == Upgrading from 4.1 and earlier
    
    === Potential breaking changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top