Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 361 for resolution_ (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    However, the consumer has to explicitly tell which configuration it depends on, which is something we want to avoid in _variant aware resolution_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. pilot/pkg/xds/eds_test.go

    		})
    	}
    }
    
    // Validates the behavior when Service resolution type is updated after initial EDS push.
    // See https://github.com/istio/istio/issues/18355 for more details.
    func TestEDSServiceResolutionUpdate(t *testing.T) {
    	for _, resolution := range []model.Resolution{model.DNSLB, model.DNSRoundRobinLB} {
    		t.Run(fmt.Sprintf("resolution_%s", resolution), func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/dependency-management-resolution.png

    dependency-management-resolution.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

    import org.gradle.internal.component.resolution.failure.exception.AbstractResolutionFailureException
    import org.gradle.internal.component.resolution.failure.exception.ArtifactVariantSelectionException
    import org.gradle.internal.component.resolution.failure.exception.ConfigurationSelectionException
    import org.gradle.internal.component.resolution.failure.exception.VariantSelectionException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

            ImmutableList.Builder<String> resolutions = ImmutableList.builder();
    
            if (throwable instanceof ResolutionProvider) {
                resolutions.addAll(((ResolutionProvider) throwable).getResolutions());
            }
    
            for (Throwable cause : getCauses(throwable)) {
                resolutions.addAll(getResolutions(cause));
            }
    
            return resolutions.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

        @Override
        public ExecutionFailure assertHasResolution(String resolution) {
            assertThat(this.resolution, containsString("> " + resolution));
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasResolutions(String... resolutions) {
            String expected = Arrays.stream(resolutions)
                .map(resolution -> "> " + resolution)
                .collect(joining("\n"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * in the selection of that module contain at least one dynamic version, then resolution will fail if the resolution
         * result can change because of this version selector.
         *
         * This can be used in cases you want to make sure your build is reproducible, <i>without</i> relying on
         * dependency locking.
         *
         * @return this resolution strategy
         * @since 6.1
         */
        ResolutionStrategy failOnDynamicVersions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[resolution_rules]]
    = Customizing resolution of a dependency directly
    
    This section covers mechanisms Gradle offers to directly influence the behavior of the dependency resolution engine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/calls/KtCall.kt

    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundArrayAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundVariableAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaDelegatedConstructorCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaErrorCallInfo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

    import java.util.stream.Collectors;
    
    /**
     * Holds the resolution state for a local component. The state is calculated as required, and an instance can be used for multiple resolutions across a build tree.
     *
     * <p>The aim is to create only a single instance of this type per project and reuse that for all resolution that happens in a build tree. This isn't quite the case yet.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top