Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 688 for resolution_ (0.38 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/InsecureProtocolException.java

        private final List<String> resolutions;
    
        public InsecureProtocolException(String message, String... resolutions) {
            super(message);
            this.resolutions = Arrays.asList(resolutions);
        }
    
        @Override
        public List<String> getResolutions() {
            return resolutions;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/resources/InsecureProtocolException.java

        private final List<String> resolutions;
    
        public InsecureProtocolException(String message, String... resolutions) {
            super(message);
            this.resolutions = Arrays.asList(resolutions);
        }
    
        @Override
        public List<String> getResolutions() {
            return resolutions;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 13 15:29:06 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/ToolchainDownloadFailedException.java

        private final List<String> resolutions;
    
        public ToolchainDownloadFailedException(String message, String... resolutions) {
            super(message);
            this.resolutions = Arrays.asList(resolutions);
        }
    
        @Override
        public List<String> getResolutions() {
            return resolutions;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/serviceentry-missing-addresses-protocol.yaml

      location: MESH_EXTERNAL
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-entry-test-04 # Expected: validation error missing addresses and protocol
      namespace: default
    spec:
      hosts:
        - 'istio.io'
      exportTo:
        - "."
      ports:
        - number: 443
          name: https
          protocol: ""
      location: MESH_EXTERNAL
      resolution: DNS
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracer.kt

            assignmentResolutions[assignment]?.let { resolution ->
                check(assignment !in elementErrors)
                Resolution(resolution)
            } ?: elementErrors[assignment]?.let { errors ->
                Errors(errors)
            } ?: NoResolution
    
        override fun expressionResolution(expr: Expr): ResolutionTrace.ResolutionOrErrors<ObjectOrigin> =
            expressionResolution[expr]?.let { resolution ->
                check(expr !in elementErrors)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitException.java

        private final List<String> resolutions;
    
        public BuildInitException(String message) {
            this(message, Collections.emptyList());
        }
    
        public BuildInitException(String message, Iterable<String> resolutions) {
            super(message);
            this.resolutions = ImmutableList.copyOf(resolutions);
        }
    
        @Override
        public List<String> getResolutions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:41 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top