Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,403 for Resolution (0.22 sec)

  1. tests/testdata/config/external_services.yaml

         name: https-ports2
         protocol: HTTP
       resolution: DNS
    
    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-dst
      namespace: testns
    spec:
       hosts:
       - dst.extsvc.com
    #   - *.dst2.extsvc.com
       ports:
       - number: 8001
         name: extsvc-http
         protocol: HTTP
       resolution: NONE
    
    ---
    
    
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/CachedExternalResourceIndex.java

    /**
     * Provides an indexed view into cached artifacts and a record of resolution attempts, successful or not.
     *
     * Maintains references to the location of files in the persistent local. Does not deal with moving files into the local.
     *
     * @param <K> The type of the key to the index
     */
    public interface CachedExternalResourceIndex<K> {
    
        /**
         * Adds a resolution to the index.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacementTest.kt

    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object OriginReplacementTest {
        @Test
        fun `replaces configured object access and function call receiver`() {
            with(resolution("configuring { property = value() }")) {
                val assignment = assignments.single()
                val lhs = replaceInnerReceiverWithTopLevel(assignment.lhs.receiverObject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:31:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

    import org.eclipse.aether.resolution.ArtifactDescriptorException;
    import org.eclipse.aether.resolution.ArtifactDescriptorPolicy;
    import org.eclipse.aether.resolution.ArtifactDescriptorPolicyRequest;
    import org.eclipse.aether.resolution.ArtifactDescriptorRequest;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    import org.eclipse.aether.resolution.ArtifactRequest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. releasenotes/notes/agent-dns-capture.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - 26826
    releaseNotes:
    - |
      **Added** Experimental DNS resolution in the Istio agent to better support use cases like service entries
      with TCP services without VIPs, multicluster DNS resolution, and DNS resolution of Kubernetes services
      from VM sidecars. This feature is disabled by default and can be enabled by setting the following in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 08 04:32:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ResolutionFailureDescriber.java

     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.resolution.failure.exception.AbstractResolutionFailureException;
    import org.gradle.internal.component.resolution.failure.type.ResolutionFailure;
    
    import java.util.Optional;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilitiesResolution.java

     */
    @HasInternalProtocol
    public interface CapabilitiesResolution {
        /**
         * Configures the resolution strategy of capability conflicts for all capabilities.
         *
         * @param action the configuration action
         */
        void all(Action<? super CapabilityResolutionDetails> action);
    
        /**
         * Configures the resolution strategy of a specific capability. The capability version is <i>irrelevant</i>.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    metadata:
      name: http1
      namespace: ns1
    spec:
      hosts:
      - http1.ns1.svc.cluster.local
      addresses:
      - 2.1.1.1
      ports:
      - number: 8080
        name: http
        protocol: HTTP2
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
      - address: 100.1.1.1
        labels:
          version: v1
        ports:
          http: 8080
      - address: 100.1.2.1
        labels:
          version: v2
        ports:
          http: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/Utils.kt

        schema: AnalysisSchema,
        resolution: ResolutionResult,
        configureLambdas: ConfigureLambdaHandler,
        customAccessors: RuntimeCustomAccessors,
        createInstance: () -> T
    ): T {
        val trace = assignmentTrace(resolution)
        val context = ReflectionContext(SchemaTypeRefContext(schema), resolution, trace)
        val topLevel = reflect(resolution.topLevelReceiver, context)
    
        return createInstance().also {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionRequest.java

         * Gets the filter used to exclude some dependencies from resolution.
         *
         * @return The filter to exclude dependencies from resolution or {@code null} to resolve all dependencies.
         */
        DependencyFilter getResolutionFilter();
    
        /**
         * Sets the filter used to exclude some dependencies from resolution. Note that this filter only controls the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top