Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,295 for METHOD (0.11 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

     * <p>An actor uses one of two modes to deliver method calls to the target object:</p>
     *
     * <ul>
     * <li>Non-blocking, or asynchronous, so that method dispatch does not block waiting for the method call to be delivered or executed.
     * In this mode, the method return value or exception is not delivered back to the dispatcher.
     * </li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final enum static field WEST: Direction
        private synthetic final static method $values(): Direction[]
        static method <clinit>(): void
        private method <init>(p0: java.lang.String, p1: int): void
        public static method getEntries(): kotlin.enums.EnumEntries
        public static method valueOf(p0: java.lang.String): Direction
        public static method values(): Direction[]
    }
    
    public final class Generic {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

            }
        }
    
        private static boolean isGetter(Method method) {
            String methodName = method.getName();
            return (isPrefixable(methodName, "get") || isPrefixable(methodName, "is")) && method.getParameterTypes().length == 0 && !method.getReturnType().equals(void.class);
        }
    
        private static boolean isSetter(Method method) {
            Class<?>[] parameterTypes = method.getParameterTypes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/MethodInvocation.java

    import org.gradle.util.internal.CollectionUtils;
    
    import java.lang.reflect.Method;
    import java.util.Arrays;
    
    public class MethodInvocation {
        private static final Object[] ZERO_ARGS = new Object[0];
        private final Method method;
        private final Object[] arguments;
    
        public MethodInvocation(Method method, Object[] args) {
            this.method = method;
            arguments = args == null ? ZERO_ARGS : args;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

        public DBDef assistCurrentDBDef() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DataSource assistDataSource() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DBMetaProvider assistDBMetaProvider() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, func TakesFunc(func(int) int)
    pkg p1, method (*B) JustOnB()
    pkg p1, method (*B) OnBothTandBPtr()
    pkg p1, method (*Embedded) OnEmbedded()
    pkg p1, method (*S2) SMethod(int8, int16, int64)
    pkg p1, method (*S2) SMethod //deprecated
    pkg p1, method (*T) JustOnT()
    pkg p1, method (*T) OnBothTandBPtr()
    pkg p1, method (B) OnBothTandBVal()
    pkg p1, method (S) StructValueMethod()
    pkg p1, method (S) StructValueMethodNamedRecv()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultRuleSourceValidationProblemCollector.java

        @Override
        public void add(MethodRuleDefinition<?, ?> method, String problem) {
            add(method.getMethod().getMethod(), problem);
        }
    
        @Override
        public void add(MethodRuleDefinition<?, ?> method, String problem, Throwable cause) {
            add(method.getMethod().getMethod(), problem + ": " + cause.getMessage());
        }
    
        @Override
        public void add(Method method, String problem) {
            add(method, "rule", problem);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. api/go1.19.txt

    pkg sync/atomic, method (*Pointer[$0]) Load() *$0 #50860
    pkg sync/atomic, method (*Pointer[$0]) Store(*$0) #50860
    pkg sync/atomic, method (*Pointer[$0]) Swap(*$0) *$0 #50860
    pkg sync/atomic, method (*Uint32) Add(uint32) uint32 #50860
    pkg sync/atomic, method (*Uint32) CompareAndSwap(uint32, uint32) bool #50860
    pkg sync/atomic, method (*Uint32) Load() uint32 #50860
    pkg sync/atomic, method (*Uint32) Store(uint32) #50860
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptor.java

                return input.getDisplayName();
            }
        };
    
        private final WeaklyTypeReferencingMethod<?, ?> method;
        private String description;
        private int hashCode;
    
        public MethodModelRuleDescriptor(WeaklyTypeReferencingMethod<?, ?> method) {
            this.method = method;
        }
    
        @Override
        public void describeTo(Appendable appendable) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

         */
        private final Map<String, List<Method>> methodByNameMap = new Hashtable<>();
    
        /**
         * Add a method to a list of methods by name.
         * For a particular class we are keeping track
         * of all the methods with the same name.
         *
         * @param method The method
         */
        void add(Method method) {
            String methodName = method.getName();
    
            List<Method> l = get(methodName);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top