Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,275 for Resolution (0.37 sec)

  1. pilot/pkg/xds/xds_test.go

    kind: ServiceEntry
    metadata:
      name: app
      namespace: app
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
      endpoints:
    {{- if eq .Resolution "DNS" }}
      - address: app.com
    {{- else }}
      - address: 1.1.1.1
    {{- end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: excluded
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/AbstractResolutionFailureException.java

            this.resolutions = ImmutableList.copyOf(resolutions);
    
            LOGGER.info("Variant Selection Exception: {} caused by Resolution Failure: {}", this.getClass().getName(), failure.getClass().getName());
        }
    
        public ResolutionFailure getFailure() {
            return failure;
        }
    
        @Override
        public ImmutableList<String> getResolutions() {
            return resolutions;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/InvalidMultipleVariantsFailureDescriber.java

     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import org.gradle.api.attributes.Attribute;
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor.AssessedCandidate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

        /**
         * Gets the local repository to use for the resolution.
         *
         * @return The local repository to use for the resolution or {@code null} if not set.
         */
        ArtifactRepository getLocalRepository();
    
        /**
         * Sets the local repository to use for the resolution.
         *
         * @param localRepository The local repository to use for the resolution.
         * @return This request, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    ====
    
    [[reproducible-resolution]]
    == Making sure resolution is reproducible
    
    There are cases where dependency resolution can be _unstable_ over time.
    That is to say that if you build at date D, building at date D+x may give a different resolution result.
    
    This is possible in the following cases:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ExternalRequestedConfigurationNotFoundFailureDescriber.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.resolution.failure.exception.ConfigurationSelectionException;
    import org.gradle.internal.component.resolution.failure.type.ExternalRequestedConfigurationNotFoundFailure;
    
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/locality_test.go

    kind: ServiceEntry
    metadata:
      name: external-service-locality
    spec:
      hosts:
      - {{.Host}}
      location: MESH_EXTERNAL
      ports:
      - name: http
        number: 80
        protocol: HTTP
      resolution: {{.Resolution}}
      endpoints:
      - address: {{.Local}}
        locality: region/zone/subzone
      - address: {{.Remote}}
        locality: notregion/notzone/notsubzone
      {{ if ne .NearLocal "" }}
      - address: {{.NearLocal}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeBinaryResolveResult.java

            for (NativeBinaryRequirementResolveResult resolution : getAllResolutions()) {
                if (resolution.getLibraryBinary() != null) {
                    result.add(resolution.getLibraryBinary());
                }
            }
            return result;
        }
    
        public List<NativeBinaryRequirementResolveResult> getPendingResolutions() {
            return CollectionUtils.filter(resolutions, new Spec<NativeBinaryRequirementResolveResult>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentIdResolveResult.java

        /**
         * Returns the graph resolution state for the component, if it was available at resolve time.
         *
         * @throws ModuleVersionResolveException If resolution was unsuccessful and the descriptor is not available.
         */
        @Nullable
        ComponentGraphResolveState getState();
    
        /**
         * Returns the graph specific resolution state for the component, if it was available at resolve time.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

        }
    
        def "does not allow changing conflict resolution on a configuration that has been resolved"() {
            buildFile << """
                configurations { a }
                configurations.a.resolve()
                configurations.a.resolutionStrategy.failOnVersionConflict()
            """
    
            when: fails()
            then: failure.assertHasCause("Cannot change resolution strategy of dependency configuration ':a' after it has been resolved")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top