Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,403 for Resolution (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/plugins/resolutionRules/groovy/settings.gradle

    end::plugin-resolution-strategy[]
    
    rootProject.name = 'resolution-rules'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 495 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/resolutionRules/kotlin/settings.gradle.kts

    // end::plugin-resolution-strategy[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 509 bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/README.adoc

    > ./gradlew -q listResolvedArtifacts
    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/listResolvedArtifacts.out[]
    
    BUILD SUCCESSFUL in 1s
    1 actionable task: 1 executed
    ----
    =====
    =====
    [.sample-command]
    ----
    > ./gradlew -q graphResolvedComponents
    include::{samplesPath}/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/graphResolvedComponents.out[]
    
    BUILD SUCCESSFUL in 1s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/InputHandlingNativeDependencyResolver.java

        public void resolve(NativeBinaryResolveResult nativeBinaryResolveResult) {
            for (NativeBinaryRequirementResolveResult resolution : nativeBinaryResolveResult.getPendingResolutions()) {
                if (resolution.getInput() instanceof NativeDependencySet) {
                    resolution.setNativeDependencySet((NativeDependencySet) resolution.getInput());
                }
            }
            delegate.resolve(nativeBinaryResolveResult);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top