Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 408 for explainTo (0.12 sec)

  1. src/cmd/go/internal/gover/toolchain.go

    		explain += fmt.Sprintf("; %s sets ", base.ShortPath(Startup.AutoFile))
    		if Startup.AutoToolchain != "" {
    			explain += "toolchain " + Startup.AutoToolchain
    		} else {
    			explain += "go " + Startup.AutoGoVersion
    		}
    	}
    	return fmt.Sprintf("%v requires go >= %v (running go %v%v)", e.What, e.GoVersion, Local(), explain)
    }
    
    var ErrTooNew = errors.New("module too new")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/specs/ExplainingSpec.java

    package org.gradle.api.internal.specs;
    
    import org.gradle.api.specs.Spec;
    
    /**
     * A predicate against objects of type T that can explain the unsatisfied reason.
     *
     * @param <T> The target type for this Spec
     */
    public interface ExplainingSpec<T> extends Spec<T> {
    
        /**
         * Explains why the spec is not satisfied.
         *
         * @param element candidate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/FixedBuildAbilityTest.groovy

            when:
            def ability = new FixedBuildAbility(false)
    
            then:
            !ability.buildable
        }
    
        def "explains not buildable reason" () {
            def visitor = Mock(DiagnosticsVisitor)
    
            when:
            def ability = new FixedBuildAbility(false)
            ability.explain(visitor)
    
            then:
            1 * 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.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsComponentLocator.java

         * @param candidate The install dir to use. Can be null.
         * @return A result containing the best component, or an unavailable result that explains why the lookup failed
         */
        SearchResult<T> locateComponent(@Nullable File candidate);
    
        /**
         * Locates all available components. Does not explain why things were not found. This method is only used for testing.
         */
        List<? extends T> locateAllComponents();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    
    And that's it! Now we have:
    
    - added a variant which provides instrumented jars
    - explained that this variant is a substitute for the runtime
    - explained that the consumer needs this variant _only for test runtime_
    
    Gradle therefore offers a powerful mechanism to select the right variants based on preferences and compatibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. docs/multi-user/admin/README.md

    ## Get started
    
    In this document we will explain in detail on how to configure admin users.
    
    ### 1. Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    https://docs.gradle.com/build-scan-plugin/#getting_set_up[Build Scan Plugin User Manual]
    explains how to enable build scans.
    
    At the end of your build, Gradle displays a URL where you can find your build scan:
    
    ----
    BUILD SUCCESSFUL in 2s
    4 actionable tasks: 4 executed
    
    Publishing build scan...
    https://gradle.com/s/e6ircx2wjbf7e
    ----
    
    This section explains how to profile your build with build scans.
    
    == Profile with build scans
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue63505.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type explainer struct {
    	m map[string]string
    }
    
    func init() {
    	RegisterExplainer(newExplainer())
    }
    
    type Explainer interface {
    	Name() string
    	Map() map[string]string
    }
    
    func (e explainer) Name() string {
    	return "HelloWorldExplainer"
    }
    
    func (e explainer) Map() map[string]string {
    	return e.m
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 736 bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/node_matchers_test.cc

                  NodeWith(Op("Placeholder"), Name("placeholder"), Inputs()));
    
      EXPECT_EQ(Explain(placeholder.node(), NodeWith(Op("Add"))),
                "\nexpected op Add but found Placeholder");
      EXPECT_EQ(Explain(placeholder.node(), NodeWith(Name("add"))),
                "\nexpected name add but found placeholder");
      EXPECT_EQ(Explain(placeholder.node(), NodeWith(Inputs(Out(NodeWith())))),
                "\nexpected 1 inputs but node has 0");
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/toolchain/ToolChainAvailabilityTest.groovy

            when:
            availability.explain(visitor)
    
            then:
            1 * visitor.node("some reason")
        }
    
        def "visits message when unsupported"() {
            def visitor = Mock(DiagnosticsVisitor)
    
            given:
            def availability = new ToolChainAvailability()
            availability.unsupported("some reason")
    
            when:
            availability.explain(visitor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top