Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 310 for explainTo (0.54 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/PropertyHost.java

    @ServiceScope({Scope.Global.class, Scope.Project.class})
    public interface PropertyHost {
        PropertyHost NO_OP = producer -> null;
    
        /**
         * Returns null if the host allows reads of its state, or a string that explains why reads are not allowed.
         */
        @Nullable
        String beforeRead(@Nullable ModelObject producer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChainTest.groovy

        }
    
        def "is not available when visual studio installation cannot be located"() {
            when:
            visualStudioLookup.available >> false
            visualStudioLookup.explain(_) >> { DiagnosticsVisitor visitor -> visitor.node("vs install not found anywhere") }
            windowsSdkLookup.available >> false
    		ucrtLookup.available >> false
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryBuildAbility.java

     */
    
    package org.gradle.platform.base.internal;
    
    import org.gradle.internal.logging.text.DiagnosticsVisitor;
    
    public interface BinaryBuildAbility {
        boolean isBuildable();
        void explain(DiagnosticsVisitor visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 835 bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolSearchResult.java

    import org.gradle.internal.logging.text.DiagnosticsVisitor;
    
    public interface ToolSearchResult {
        boolean isAvailable();
    
        /**
         * Writes some diagnostics about why the tool is not available.
         */
        void explain(DiagnosticsVisitor visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 928 bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        }
    
        def "is unavailable when no language tools can be found and building any language"() {
            def compilerMissing = Stub(CommandLineToolSearchResult) {
                isAvailable() >> false
                explain(_) >> { DiagnosticsVisitor visitor -> visitor.node("c compiler not found") }
            }
    
            given:
            platform.operatingSystem >> dummyOs
            platform.architecture >> dummyArch
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/FixedBuildAbility.java

        public FixedBuildAbility(boolean buildable) {
            this.buildable = buildable;
        }
    
        @Override
        public boolean isBuildable() {
            return buildable;
        }
    
        @Override
        public void explain(DiagnosticsVisitor visitor) {
            if (!buildable) {
                visitor.node("Disabled by user");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    You can also replace much of Gradle’s logging with your own by registering various event listeners.
    One example of a <<logging.adoc#sec:changing_what_gradle_logs,custom event logger is explained in the logging documentation>>.
    You can also <<logging.adoc#sec:external_tools,control logging from external tools>>, making them more verbose to debug their execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleArtifactVariantsFailureDescriber.java

    public abstract class IncompatibleArtifactVariantsFailureDescriber extends AbstractResolutionFailureDescriber<IncompatibleResolutionFailure> {
        private static final String NO_MATCHING_VARIANTS_PREFIX = "No matching variant errors are explained in more detail at ";
        private static final String NO_MATCHING_VARIANTS_SECTION = "sub:variant-no-match";
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/help.txt

    # go bug help is an error (bug takes no arguments)
    ! go bug help
    stderr 'bug takes no arguments'
    
    # go help mod shows mod subcommands
    go help mod
    stdout 'go mod <command>'
    stdout tidy
    
    # go help mod tidy explains tidy
    go help mod tidy
    stdout 'usage: go mod tidy'
    
    # go mod help tidy does too
    go mod help tidy
    stdout 'usage: go mod tidy'
    
    # go mod --help doesn't print help but at least suggests it.
    ! go mod --help
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top