Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 291 for Resolution (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

    import spock.lang.Issue
    
    /**
     * Common location for resolution tests that are related to user-reported issues.
     *
     * Once these issues are resolved, we should make sure to  move these tests to a
     * file more appropriate for the feature they are testing.
     */
    class ResolutionIssuesIntegrationTest extends AbstractIntegrationSpec {
    
        @NotYetImplemented
        def "resolution hits isConstraint assertion"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. pkg/dns/server/name_table_test.go

    		DefaultAddress: constants.UnspecifiedIP,
    		Ports: model.PortList{&model.Port{
    			Name:     "tcp-port",
    			Port:     9000,
    			Protocol: protocol.TCP,
    		}},
    		Resolution: model.Passthrough,
    		Attributes: model.ServiceAttributes{
    			Name:            "headless-svc",
    			Namespace:       "testns",
    			ServiceRegistry: provider.Kubernetes,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

    import org.eclipse.aether.repository.WorkspaceReader;
    import org.eclipse.aether.resolution.MetadataRequest;
    import org.eclipse.aether.resolution.MetadataResult;
    import org.eclipse.aether.resolution.VersionRangeRequest;
    import org.eclipse.aether.resolution.VersionRangeResolutionException;
    import org.eclipse.aether.resolution.VersionRangeResult;
    import org.eclipse.aether.spi.synccontext.SyncContextFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    May be followed by a `because` text.
    
    | By conflict resolution : between versions <version>
    | The dependency appeared multiple times, with different version requests.
    This resulted in <<dependency_resolution#sec:version-conflict, conflict resolution>> to select the most appropriate version.
    
    | By constraint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

        /**
         * An immutable data class that holds information about a single variant which was a candidate for matching during resolution.
         *
         * This includes classifying its attributes into lists of compatible, incompatible, and absent attributes.  Each candidate
         * is assessed within the context of a resolution, but must not reference the assessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_simulation_test.go

      labels:
        experimental.istio.io/disable-gateway-port-translation: "true"
    spec:
      hosts: ["a.example.com"]
      ports:
      - number: 80
        targetPort: 8081
        name: http
        protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          istio: ingressgateway
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    The `Copy` task resolves the configuration itself during task execution.
    
    ==== Visualize dependency resolution with build scans
    
    The "Dependency resolution" tab on the performance page of a build scan shows dependency
    resolution time during the configuration and execution phases:
    
    image::performance/bad-dependency-resolution.png[title="Dependency resolution at configuration time"]
    
    Build scans provide another means of identifying this issue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                c.withParticipatingModules(resolveState.getDeselectVersionAction());
            }
        }
    
        /**
         * Prepares the resolution of edges, either serially or concurrently.
         * It uses a simple heuristic to determine if we should perform concurrent resolution, based on the number of edges, and whether they have unresolved metadata.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                (inner.selectorExpression as? KtReferenceExpression)?.mainReference ?: return true
            else ->
                return true
        }
        val resolution = reference.resolve()
        return resolution != null && resolution !is KtClass
    }
    
    /**
     * Invocations of _statically named_ callables is not considered a use. E.g.
     * consider
     *
     *   1)   fun f() { 54 }; f()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

            return checkNotNull(resolutionData.get(contextId), "Resolution data for id %s does not exist!", contextId);
        }
    
        public ResolutionScope newResolutionScope(long contextId) {
            ResolutionData resolutionData = this.resolutionData.compute(contextId, (__, value) -> {
                checkArgument(value == null, "Resolution data for id %s already exists! Was previous resolution scope closed properly?", contextId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top