Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 6,733 for MethodB (0.32 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

    import javax.annotation.Nullable;
    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.util.Collection;
    
    public interface PropertyDetails {
    
        String getName();
    
        /**
         * The getter methods for a particular type.
         *
         * This list will only ever contain more than one method when there are getter methods with <b>different</b> return types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingSortedMap.java

     * provided {@code standardPutAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedMap}.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use the comparator of the map to test
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

       */
      @CanIgnoreReturnValue
      public B suppressing(Method... methods) {
        return suppressing(Arrays.asList(methods));
      }
    
      @CanIgnoreReturnValue
      public B suppressing(Collection<Method> methods) {
        suppressedTests.addAll(methods);
        return self();
      }
    
      public Set<Method> getSuppressedTests() {
        return suppressedTests;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

     * </ul>
     *
     * <p>
     * When a struct type node is projected as one of its views, each method in the view must be implemented. These bindings
     * contain the information about how each view method should be implemented by the view proxy.
     * There are three ways a method can be implemented like:
     * </p>
     *
     * <ul>
     *     <li>non-abstract methods on the public view are implemented by the view itself (see {@link DirectMethodBinding})</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ForwardingSet.java

     * provided {@code standardAddAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSet}.
     *
     * <p>The {@code standard} methods are not guaranteed to be thread-safe, even when all of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/reproducible/issue38068.go

    	q := a.s
    	if y == 998877 {
    		a.s = x
    	}
    	r := a.s + a.s
    	return q + r
    }
    
    type methods struct {
    	m1 func(a *A, x string, y int) string
    	m2 func(a *A, x string, y int) string
    }
    
    // Now a function that makes references to the methods via pointers,
    // which should trigger the wrapper generation.
    func P(a *A, ms *methods) {
    	if a != nil {
    		defer func() { println("done") }()
    	}
    	println(ms.m1(a, "a", 2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 16 02:31:08 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-in.yaml

                notIpBlocks: ["9.0.0.1"]
                notRemoteIpBlocks: ["192.168.244.139"]
          to:
            - operation:
                methods: ["method"]
                hosts: ["exact.com"]
                ports: ["80"]
                paths: ["/exact"]
                notMethods: ["not-method"]
                notHosts: ["not-exact.com"]
                notPorts: ["8000"]
                notPaths: ["/not-exact"]
          when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingSortedSet.java

     * provided {@code standardAddAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedSet}.
     *
     * <p>Each of the {@code standard} methods, where appropriate, uses the set's comparator (or the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// 	L5: func _[T any]() { var s S[int]; s.Foo() }
    	//
    	// The receivers of methods on generic types are instantiations. L2 and L3
    	// instantiate S with the type-parameters A and B, which are scoped to the
    	// respective methods. L4 and L5 each instantiate S with int. Each of these
    	// instantiations has its own method set, full of methods (and thus objects)
    	// with receivers whose types are the respective instantiations. In other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/OptionReader.java

                    JavaMethod<Object, Collection> optionValuesMethod = getAsOptionValuesMethod(type, method);
                    if (optionValuesMethod != null) {
                        methods.add(optionValuesMethod);
                    }
                }
            }
            return methods;
        }
    
        private static JavaMethod<Object, Collection> getAsOptionValuesMethod(Class<?> type, Method method) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 09:51:34 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top