Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for setStop (0.21 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

        /**
         * Returns the HTML text to appear in the top text for each page.
         */
        @Nullable @Optional @Input
        public String getTop() {
            return top;
        }
    
        /**
         * Sets the HTML text to appear in the top text for each page.
         */
        public void setTop(@Nullable String top) {
            this.top = top;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. docs/contribute/debug_logging.md

    for whichever features you need:
    
    ```
    OkHttpDebugLogging.enableHttp2()
    OkHttpDebugLogging.enableTaskRunner()
    ```
    
    ### Activating on Android
    
    ```
    $ adb shell setprop log.tag.okhttp.Http2 DEBUG
    $ adb shell setprop log.tag.okhttp.TaskRunner DEBUG
    $ adb logcat '*:E' 'okhttp.Http2:D' 'okhttp.TaskRunner:D'
    ```
    
    ### HTTP/2 Frame Logging
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/project-with-source/Production.java

            return property;
        }
    <% propertyCount.times { %>
        private String prop${it};
    
        public String getProp${it}() {
            return prop${it};
        }
    
        public void setProp${it}(String value) {
            prop${it} = value;
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 467 bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithParameterizedTypes.groovy

    package org.gradle.test
    
    class GroovyClassWithParameterizedTypes {
        Set<CombinedInterface> setProp
    
        Map<CombinedInterface, GroovyClassWithParameterizedTypes> mapProp
    
        List<?> wildcardProp
    
        List<? extends CombinedInterface> upperBoundProp
    
        List<? super CombinedInterface> lowerBoundProp
    
        List<? super Set<? extends Map<?, CombinedInterface[]>>>[] nestedProp
    
        static <T> T paramMethod(T param) {
            null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 442 bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/Production.java

            return property;
        }
    <% propertyCount.times { %>
        private String prop${it};
    
        public String getProp${it}() {
            return prop${it};
        }
    
        public void setProp${it}(String value) {
            prop${it} = value;
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 467 bytes
    - Viewed (0)
  6. testing/performance/src/templates/java-source/Production.java

            return property;
        }
    <% propertyCount.times { %>
        private String prop${it};
    
        public String getProp${it}() {
            return prop${it};
        }
    
        public void setProp${it}(String value) {
            prop${it} = value;
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

                package org.gradle.api.plugins;
                class JavaPluginConvention {
                    String _prop;
                    String getProp() { return _prop; }
                    void setProp(String value) { _prop = value; }
                    String doSomething(String arg) { return arg; }
                }
            """)
            !GroovyObject.isAssignableFrom(original)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/mini.go

    func (n *miniNode) posOr(pos src.XPos) src.XPos {
    	if pos.IsKnown() {
    		return pos
    	}
    	return n.pos
    }
    
    // op can be read, but not written.
    // An embedding implementation can provide a SetOp if desired.
    // (The panicking SetOp is with the other panics below.)
    func (n *miniNode) Op() Op            { return n.op }
    func (n *miniNode) Pos() src.XPos     { return n.pos }
    func (n *miniNode) SetPos(x src.XPos) { n.pos = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/pack/pack.go

    // op holds the operation we are doing (prtx).
    // verbose tells whether the 'v' option was specified.
    var (
    	op      rune
    	verbose bool
    )
    
    // setOp parses the operation string (first argument).
    func setOp(arg string) {
    	// Recognize 'go tool pack grc' because that was the
    	// formerly canonical way to build a new archive
    	// from a set of input files. Accepting it keeps old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/execution/ExceptionAttributionIntegrationTest.groovy

                        p.extensions.create("thing", ExtensionImpl)
                    }
                }
    
                class ExtensionImpl {
                    String getProp() { return "value" }
                    void setProp(String value) {
                        throw new RuntimeException("broken")
                    }
                }
            """
            file("buildSrc/src/main/resources/META-INF/gradle-plugins/test.broken.properties") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 07 06:23:22 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top