Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for formmethod (0.48 sec)

  1. src/html/template/attr.go

    	"enctype":         contentTypeUnsafe,
    	"for":             contentTypePlain,
    	"form":            contentTypeUnsafe,
    	"formaction":      contentTypeURL,
    	"formenctype":     contentTypeUnsafe,
    	"formmethod":      contentTypeUnsafe,
    	"formnovalidate":  contentTypeUnsafe,
    	"formtarget":      contentTypePlain,
    	"headers":         contentTypePlain,
    	"height":          contentTypePlain,
    	"hidden":          contentTypePlain,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/AbstractModelRuleDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    import org.gradle.api.internal.cache.StringInterner;
    
    @ThreadSafe
    abstract class AbstractModelRuleDescriptor implements ModelRuleDescriptor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/DefaultTestFilterTest.groovy

        def "allows configuring test names"() {
            expect: spec.includePatterns.isEmpty()
    
            when:
            spec.includeTestsMatching("*fooMethod")
            spec.includeTestsMatching("*.FooTest.*")
    
            then: spec.includePatterns == ["*fooMethod", "*.FooTest.*"] as Set
    
            when: spec.setIncludePatterns("x")
    
            then: spec.includePatterns == ["x"] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    
    /**
     * Describes a method rule.
     * All implementations of this class are expected to implement the equals and hashCode method
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DescriptiveChange.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    import com.google.errorprone.annotations.FormatMethod;
    
    import java.util.Objects;
    
    public class DescriptiveChange implements Change {
        private final String message;
    
        @FormatMethod
        public DescriptiveChange(String message, Object... params) {
            this.message = String.format(message, params);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/AbstractStyledTextOutput.java

            return this;
        }
    
        @FormatMethod
        @Override
        public StyledTextOutput format(String pattern, Object... args) {
            text(String.format(pattern, args));
            return this;
        }
    
        @Override
        public StyledTextOutput println(Object text) {
            text(text);
            println();
            return this;
        }
    
        @FormatMethod
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/TestExecutionResultEvaluatorTest.groovy

            def testMethodRequest = Mock(InternalJvmTestRequest)
            1 * testMethodRequest.getClassName() >> "org.acme.SomeFooTest"
            1 * testMethodRequest.getMethodName() >> "fooMethod"
    
            def testMethodRequest2 = Mock(InternalJvmTestRequest)
            1 * testMethodRequest2.getClassName() >> "org.acme.SomeBazTest"
            1 * testMethodRequest2.getMethodName() >> "bazMethod"
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    			}
    			x, sel, fn := forbiddenMethod(pass.TypesInfo, call)
    			if x == nil {
    				return true
    			}
    
    			for _, e := range asyncs[region] {
    				if !withinScope(e.scope, x) {
    					forbidden := formatMethod(sel, fn) // e.g. "(*testing.T).Forbidden
    
    					var context string
    					var where analysis.Range = e.async // Put the report at the go fun() or t.Run(name, fun).
    					if _, local := e.fun.(*ast.FuncLit); local {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.internal.runners.rules; synchronized class RuleMemberValidator$Builder { private final Class annotation; private boolean methods; private final java.util.List validators; private void RuleMemberValidator$Builder(Class); RuleMemberValidator$Builder forMethods(); RuleMemberValidator$Builder withValidator(RuleMemberValidator$RuleValidator); RuleMemberValidator build(); } org/junit/internal/runners/rules/RuleMemberValidator.class package org.junit.internal.runners.rules; public synchronized class RuleMemberValidator...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top