Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 434 for Resolution (0.27 sec)

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

                    }
                    constraint("org:foo:1.1", "org:foo:1.1")
                }
            }
        }
    
        /**
         * Test demonstrates a bug in resolution of constraints, when real dependency is evicted via conflict resolution.
         */
        @Issue("gradle/gradle#4610")
        void "dependency constraint should not preserve hard dependency for evicted dependency"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicy.java

        }
    
        /**
         * Apply a rule to control resolution of dependencies.
         *
         * @param rule the rule to apply
         */
        private void eachDependency(Action<? super DependencyResolutionControl> rule) {
            mutationValidator.validateMutation(STRATEGY);
            dependencyCacheRules.add(0, rule);
        }
    
        /**
         * Apply a rule to control resolution of modules.
         *
         * @param rule the rule to apply
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

                candidates = new ArrayList<>(candidates);
                candidates.add(rootComponent);
            }
    
            // If we have a single common resolution, no conflicts to resolve
            if (candidates.size() == 1) {
                return candidates.get(0);
            }
    
            if (resolveOptimizations.mayHaveForcedPlatforms()) {
                List<T> allowed = candidates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

         * This is a separate node so that this work can access project state to do the resolution and to discover additional dependencies for the transform
         * during resolution of upstream dependencies. It also allows the work of resolution to be attributed separately to the work of the transform.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. maven-core/plugin-manager.txt

    repository. During development in an IDE we would need layered resolution approach that would allow resolution from the workspace, then the local Maven repository and then from any number of remote Maven repositories. During development from the command line we would need a layered resolution approach that would allow resolution from the local Maven repository and then from any number of remote Maven repositories. In production the resolution for the dependencies could also be layered but would depend...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
Back to top