Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for getGood (0.12 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

                    @Restricted
                    Property<String> getId();
    
    
                    Foo getFoo();
    
                    @Configuring
                    default void foo(Action<? super Foo> action) {
                        action.execute(getFoo());
                    }
    
                    public abstract static class Foo {
                        public Foo() { }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

                    @Inject abstract ProviderFactory getProviderFactory()
    
                    @Internal abstract Property<String> getOther()
    
                    @Internal Provider<String> getFoo() {
                        return other;
                    }
    
                    @TaskAction
                    void useIt() {
                        assert foo.get() == "foobar"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. istioctl/pkg/clioptions/central.go

    		"XDS Subject Alternative Name (for example istiod.istio-system.svc)")
    	cmd.PersistentFlags().BoolVar(&o.InsecureSkipVerify, "insecure", viper.GetBool("INSECURE"),
    		"Skip server certificate and domain verification. (NOT SECURE!)")
    	cmd.PersistentFlags().BoolVar(&o.Plaintext, "plaintext", viper.GetBool("PLAINTEXT"),
    		"Use plain-text HTTP/2 when connecting to server (no TLS).")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleBindingTest.groovy

            @Model
            String s2() {
                "bar"
            }
        }
    
        def "error message produced when unpathed reference matches more than one item"() {
            when:
            modelRegistry.getRoot().applyToSelf(AmbiguousBindingsInOneSource)
            modelRegistry.bindAllReferences()
    
            then:
            def e = thrown(InvalidModelRuleException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/object_unused.txt

    expression: OBJECT_LITERAL
    text: object {
            fun getBool(): Boolean = b
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 109 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/object_used.txt

    expression: OBJECT_LITERAL
    text: object {
            fun getBool(): Boolean = b
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 108 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                inputHierarchy.recordNodeAccessingFileTree(node, filteredFileTreeInput.getRoot(), spec);
                collectValidationProblemsForConsumer(
                    node,
                    validationContext,
                    filteredFileTreeInput.getRoot(),
                    outputHierarchy.getNodesAccessing(filteredFileTreeInput.getRoot(), spec)
                );
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    		window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
    }
    
    /**
     * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable.
     */
    function getRoot(root) {
    	if(svgRoot == null) {
    		var r = root.getElementById("viewport") ? root.getElementById("viewport") : root.documentElement, t = r;
    
    		while(t != root) {
    			if(t.getAttribute("viewBox")) {
    				setCTM(r, t.getCTM());
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_swig.txt

    	g := Gcd(x, y)
    	fmt.Println("The gcd of", x, "and", y, "is", g)
    
    	// Manipulate the Foo global variable
    
    	// Output its current value
    	fmt.Println("Foo =", GetFoo())
    
    	// Change its value
    	SetFoo(3.1415926)
    
    	// See if the change took effect
    	fmt.Println("Foo =", GetFoo())
    }
    -- main.swig --
    %module main
    
    %inline %{
    extern int    gcd(int x, int y);
    extern double Foo;
    %}
    -- main_test.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 05 21:29:51 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/CommandLineToolSearchResult.java

    import org.gradle.platform.base.internal.toolchain.ToolSearchResult;
    
    import java.io.File;
    
    public interface CommandLineToolSearchResult extends ToolSearchResult {
        File getTool();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 864 bytes
    - Viewed (0)
Back to top