Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 367 for resolution1 (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

        }
    
        private boolean shouldCacheResolutionState() {
            // When there may be more than one configuration defined, cache the component resolution state, so it can be reused for resolving multiple configurations.
            // When there may be no more than one configuration, don't cache the resolution state for reuse. Currently, this only applies to detached configurations, however
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

                is RuntimeFunctionResolver.Resolution.Resolved -> {
                    val bindingWithValues = origin.parameterBindings.bindingMap.mapValues { getObjectByResolvedOrigin(it.value) }
                    runtimeFunction.function.callByWithErrorHandling(receiverInstance, bindingWithValues, origin.parameterBindings.providesConfigureBlock)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

    import java.util.function.Consumer;
    
    /**
     * A {@link VariantDependencyResolver} that analyzes a resolution result to determine the
     * resolved coordinates for a given dependency.
     *
     * <p>The configuration being resolved should declare the same dependencies as the variant
     * being published. Then, each outgoing edge of the analyzed resolution result will correspond
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top