Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,315 for MethodA (0.23 sec)

  1. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *   <li>If the constructor or factory method used to construct instance takes a parameter that
       *       {@link AbstractPackageSanityTests} doesn't know how to construct, the test will fail.
       *   <li>If there is no visible constructor or visible static factory method declared by {@code
       *       C}, instance methods are skipped for nulls test.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    You can declare a read-only managed nested property by adding an abstract getter method for the property to a type annotated with link:{javadocPath}/org/gradle/api/tasks/Nested.html[`@Nested`].
    The property should not have any setter methods.
    Gradle provides the implementation for the getter method and creates a value for the property.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/internal/reflectlite/value.go

    //
    // Not all methods apply to all kinds of values. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    // calling kind-specific methods. Calling a method
    // inappropriate to the kind of type causes a run time panic.
    //
    // The zero Value represents no value.
    // Its IsValid method returns false, its Kind method returns Invalid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/internal/reflectlite/type.go

    import (
    	"internal/abi"
    	"unsafe"
    )
    
    // Type is the representation of a Go type.
    //
    // Not all methods apply to all kinds of types. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of type before
    // calling kind-specific methods. Calling a method
    // inappropriate to the kind of type causes a run-time panic.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *   <li>If the constructor or factory method used to construct instance takes a parameter that
       *       {@link AbstractPackageSanityTests} doesn't know how to construct, the test will fail.
       *   <li>If there is no visible constructor or visible static factory method declared by {@code
       *       C}, instance methods are skipped for nulls test.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

        @Nullable
        private static Method findAgentMethod(String agentClassName, String methodName, Class<?>... args) {
            Class<?> agentClass = tryLoadAgentClass(agentClassName);
            if (agentClass == null) {
                return null;
            }
            try {
                Method method = agentClass.getMethod(methodName, args);
                method.setAccessible(true);
                return method;
            } catch (NoSuchMethodException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

            output.contains "hello"
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3079")
        def "methods defined in script are available to used script plugins"() {
            given:
            buildScript """
              def addTask(project) {
                project.tasks.create("hello").doLast { println "hello from method" }
              }
    
              apply from: "script.gradle"
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/go/doc/reader.go

    			return
    		}
    		recvTypeName, imp := baseTypeName(fun.Recv.List[0].Type)
    		if imp {
    			// should not happen (incorrect AST);
    			// don't show this method
    			return
    		}
    		if typ := r.lookupType(recvTypeName); typ != nil {
    			typ.methods.set(fun, r.mode&PreserveAST != 0)
    		}
    		// otherwise ignore the method
    		// TODO(gri): There may be exported methods of non-exported types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    }
                }
    
                // Query the declared methods of the meta class
                for (MetaMethod method : metaClass.getMethods()) {
                    if (method.getName().equals("propertyMissing") && method.getParameterTypes().length == 1) {
                        return method;
                    }
                }
                return null;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top