Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,193 for METHOD (0.29 sec)

  1. api/go1.23.txt

    pkg sync/atomic, method (*Int32) And(int32) int32 #61395
    pkg sync/atomic, method (*Int32) Or(int32) int32 #61395
    pkg sync/atomic, method (*Int64) And(int64) int64 #61395
    pkg sync/atomic, method (*Int64) Or(int64) int64 #61395
    pkg sync/atomic, method (*Uint32) And(uint32) uint32 #61395
    pkg sync/atomic, method (*Uint32) Or(uint32) uint32 #61395
    pkg sync/atomic, method (*Uint64) And(uint64) uint64 #61395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/StructSchemaExtractionStrategySupport.java

            Set<Method> nonPropertyMethods = Sets.newLinkedHashSet(Iterables.transform(candidateMethods.allMethods().keySet(), new Function<Wrapper<Method>, Method>() {
                @Override
                public Method apply(Wrapper<Method> method) {
                    return method.get();
                }
            }));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

                }
            }
    
            @Override
            SnippetsFactory getKotlin() {
                return makeFactory(method) { fixture ->
                    fixture.newKotlinExecJavaexecSnippets(method, kotlinSpecFactory.apply(fixture))
                }
            }
    
            @Override
            SnippetsFactory getJava() {
                return makeFactory(method) { fixture ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Tint {
        String value()
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Ignored {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface AlsoIgnored {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface ItDepends {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Preconditions.java

    /**
     * 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)
  7. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       whether the author intended for the class to be a value type.
       *   <li>If a constructor or factory method takes a parameter whose type is interface, a dynamic
       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls2/decls2a.go

    // Methods with zero or multiple receivers.
    func ( /* ERROR "method has no receiver" */ ) _() {}
    func (T3, * /* ERROR "method has multiple receivers" */ T3) _() {}
    func (T3, T3, T3 /* ERROR "method has multiple receivers" */ ) _() {}
    func (a, b /* ERROR "method has multiple receivers" */ T3) _() {}
    func (a, b, c /* ERROR "method has multiple receivers" */ T3) _() {}
    
    // Methods associated with non-local or unnamed types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/TestThread.java

        return getMethod(methodName, arguments).invoke(lockLikeObject, arguments);
      }
    
      private Method getMethod(String methodName, Object... arguments) throws Exception {
        METHODS:
        for (Method method : lockLikeObject.getClass().getMethods()) {
          Class<?>[] parameterTypes = method.getParameterTypes();
          if (method.getName().equals(methodName) && (parameterTypes.length == arguments.length)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

                new StackTraceElement('java.lang.reflect.Method', 'invoke', 'Method.java', 498),
                new StackTraceElement('some.Class', 'withoutSource', null, -1),
                new StackTraceElement('some.Class', 'withNativeMethod', null, -2),
                new StackTraceElement('java.lang.reflect.Method', 'invoke', 'Method.java', 498),
                new StackTraceElement('java.lang.reflect.Method', 'invoke', 'Method.java', 498),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top