Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for method1 (0.2 sec)

  1. src/text/template/exec_test.go

    	// Method calls.
    	{".Method0", "-{{.Method0}}-", "-M0-", tVal, true},
    	{".Method1(1234)", "-{{.Method1 1234}}-", "-1234-", tVal, true},
    	{".Method1(.I)", "-{{.Method1 .I}}-", "-17-", tVal, true},
    	{".Method2(3, .X)", "-{{.Method2 3 .X}}-", "-Method2: 3 x-", tVal, true},
    	{".Method2(.U16, `str`)", "-{{.Method2 .U16 `str`}}-", "-Method2: 16 str-", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    	// Method calls.
    	{".Method0", "-{{.Method0}}-", "-M0-", tVal, true},
    	{".Method1(1234)", "-{{.Method1 1234}}-", "-1234-", tVal, true},
    	{".Method1(.I)", "-{{.Method1 .I}}-", "-17-", tVal, true},
    	{".Method2(3, .X)", "-{{.Method2 3 .X}}-", "-Method2: 3 x-", tVal, true},
    	{".Method2(.U16, `str`)", "-{{.Method2 .U16 `str`}}-", "-Method2: 16 str-", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.configure(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Method <org.gradle.api.DefaultTask.configure(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. src/reflect/type.go

    // NumMethod returns the number of interface methods in the type's method set.
    func (t *interfaceType) NumMethod() int { return len(t.Methods) }
    
    // MethodByName method with the given name in the type's method set.
    func (t *interfaceType) MethodByName(name string) (m Method, ok bool) {
    	if t == nil {
    		return
    	}
    	var p *abi.Imethod
    	for i := range t.Methods {
    		p = &t.Methods[i]
    		if t.nameOff(p.Name).Name() == name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "allow common querying and mutating methods when #methods.key on filtered container by type"() {
            setupContainerDefaults()
            addToContainer(a)
            Closure method = bind(methods.value)
    
            when:
            container.withType(container.type).all(noReentry(method))
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	return signature, nil
    }
    
    // Returns new HTTP request object.
    func newTestStreamingRequest(method, urlStr string, dataLength, chunkSize int64, body io.ReadSeeker) (*http.Request, error) {
    	if method == "" {
    		method = http.MethodPost
    	}
    
    	req, err := http.NewRequest(method, urlStr, nil)
    	if err != nil {
    		return nil, err
    	}
    
    	if body == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * a closure or {@link org.gradle.api.Action} as a parameter.</li>
     *
     * <li>The convention methods added to the project by the plugins. A plugin can add properties and method to
     * a project through the project's {@link org.gradle.api.plugins.Convention} object.</li>
     *
     * <li>The tasks of the project. A method is added for each task, using the name of the task as the method name and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
            for (ServiceMethod method : methods.factories) {
                ownServices.add(new FactoryMethodService(this, target, method));
            }
            for (ServiceMethod method : methods.configurers) {
                applyConfigureMethod(method, target);
            }
        }
    
        private void applyConfigureMethod(ServiceMethod method, Object target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The deprecated `setForce(boolean)` method of the `ExternalDependency` interface has been removed.
    Use the `version(Action)` method to configure strict versions instead.
    
    ==== Build-scan method removed from Kotlin DSL
    
    The deprecated `build-scan` plugin application method has been removed from the Kotlin DSL.
    Use the `gradle-enterprise` method instead.
    
    ==== Configuration extension methods removed from Kotlin DSL
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Preconditions.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static convenience methods that help a method or constructor check whether it was invoked
     * correctly (that is, whether its <i>preconditions</i> were met).
     *
     * <p>If the precondition is not met, the {@code Preconditions} method throws an unchecked exception
     * of a specified type, which helps the method in which the exception was thrown communicate that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top