Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 310 for explainTo (0.2 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            when:
            def result = windowsSdkLocator.locateComponent(null)
    
            then:
            !result.available
            result.component == null
    
            when:
            result.explain(visitor)
    
            then:
            visitor.toString() == "Could not locate a Windows SDK installation using the Windows registry."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ComponentFound.java

        }
    
        @Override
        public T getComponent() {
            return component;
        }
    
        @Override
        public boolean isAvailable() {
            return true;
        }
    
        @Override
        public void explain(DiagnosticsVisitor visitor) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/package-info.java

     * library. For more information on Sources and Sinks as well as other features of this package, see
     * <a href="https://github.com/google/guava/wiki/IOExplained">I/O Explained</a> on the Guava wiki.
     *
     * @author Chris Nokleberg
     */
    @CheckReturnValue
    @ParametersAreNonnullByDefault
    package com.google.common.io;
    
    import com.google.errorprone.annotations.CheckReturnValue;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactVariantsFailureDescriber.java

     */
    public abstract class AmbiguousArtifactVariantsFailureDescriber extends AbstractResolutionFailureDescriber<AmbiguousResolutionFailure> {
        private static final String AMBIGUOUS_VARIANTS_PREFIX = "Ambiguity errors are explained in more detail at ";
        private static final String AMBIGUOUS_VARIANTS_SECTION = "sub:variant-ambiguity";
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/InvalidMultipleVariantsFailureDescriber.java

    public abstract class InvalidMultipleVariantsFailureDescriber extends AbstractResolutionFailureDescriber<IncompatibleMultipleNodeSelectionFailure> {
        private static final String INCOMPATIBLE_VARIANTS_PREFIX = "Incompatible variant errors are explained in more detail at ";
        private static final String INCOMPATIBLE_VARIANTS_SECTION = "sub:variant-incompatible";
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    # Contributing to the Gradle Build Tool
    
    Thank you for your interest in contributing to Gradle!
    This guide explains how to contribute to the core Gradle components, 
    extensions and documentation located in this repository.
    For other extensions and components, see the 
    [Gradle Community Resources](https://gradle.org/resources/).
    
    This guide will help you to...
    
    * maximize the chance of your changes being accepted
    * work on the Gradle code base
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ComponentNotFound.java

        }
    
        @Override
        public T getComponent() {
            return null;
        }
    
        @Override
        public boolean isAvailable() {
            return false;
        }
    
        @Override
        public void explain(DiagnosticsVisitor visitor) {
            visitor.node(message);
            if (!locations.isEmpty()) {
                visitor.startChildren();
                for (String location : locations) {
                    visitor.node(location);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/UnavailableNativePlatformToolProviderTest.groovy

        def "is not available"() {
            expect:
            !toolChain.available
    
            def visitor = Mock(DiagnosticsVisitor)
    
            when:
            toolChain.explain(visitor)
    
            then:
            1 * visitor.node("broken")
        }
    
        def "throws failure when attempting to create a compiler"() {
            when:
            toolChain.newCompiler(NativeCompileSpec.class)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocatorTest.groovy

            when:
            def result = ucrtLocator.locateComponent(null)
    
            then:
            !result.available
            result.component == null
    
            when:
            result.explain(visitor)
    
            then:
            visitor.toString() == "Could not locate a Universal C Runtime installation using the Windows registry."
        }
    
        def "uses ucrt using specified install dir"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. README.md

    flavor.
    
    -   Snapshot API Docs: [guava][guava-snapshot-api-docs]
    -   Snapshot API Diffs: [guava][guava-snapshot-api-diffs]
    
    ## Learn about Guava
    
    -   Our users' guide, [Guava Explained]
    -   [A nice collection](https://www.tfnico.com/presentations/google-guava) of
        other helpful links
    
    ## Links
    
    -   [GitHub project](https://github.com/google/guava)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top