Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,171 for resolution_ (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

                if (!versionConflicts.isEmpty()) {
                    List<String> resolutions = resolveContext.getFailureResolutions().forVersionConflict(versionConflicts);
                    nonFatalFailuresBuilder.add(new VersionConflictException(versionConflicts, resolutions));
                }
            }
    
            Set<Throwable> nonFatalFailures = nonFatalFailuresBuilder.build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. okhttp/build.gradle.kts

      "Import-Package: " +
        "android.*;resolution:=optional," +
        "com.oracle.svm.core.annotate;resolution:=optional," +
        "com.oracle.svm.core.configure;resolution:=optional," +
        "dalvik.system;resolution:=optional," +
        "org.conscrypt;resolution:=optional," +
        "org.bouncycastle.*;resolution:=optional," +
        "org.openjsse.*;resolution:=optional," +
        "org.graalvm.nativeimage;resolution:=optional," +
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. tests/testdata/config/none.yaml

      - number: 2006
        protocol: TCP
        name: tcp1 # TODO: is it optional ? Why not ?
      resolution: DNS
    
    ---
    # Outbound TCP cluster, resolution DNS - for a '.svc' (in cluster) service.
    # As an optimization, this can be converted to EDS
    # The new Sidecar is the recommended way to declare deps to mesh services - however
    # DNS resolution is supposed to continue to work.
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  8. 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 (2)
  9. pilot/pkg/xds/testdata/nds-se.yaml

        - number: 80
          name: http
          protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-dns-with-addr
      namespace: ns2
    spec:
      hosts:
        - random-2.host.example
      addresses:
        - 9.9.9.9
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 08 09:17:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/typeconversion/UnsupportedNotationException.java

            super(format(failure, resolution, candidateTypes));
            this.notation = notation;
            this.candidates = candidateTypes;
        }
    
        public Collection<String> getCandidates() {
            return candidates;
        }
    
        private static String format(String failure, String resolution, Collection<String> formats) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top