Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 6,738 for method1 (0.16 sec)

  1. platforms/jvm/testing-jvm/src/testFixtures/groovy/org/gradle/testing/fixture/JUnitPlatformTestFixture.groovy

            Set<TestMethod> methods = [] as LinkedHashSet
            boolean disabled
    
            TestClass(String name, TestFile projectDir) {
                this.name = name
                this.projectDir = projectDir
            }
    
            TestMethod testMethod(String name) {
                def method = new TestMethod(name)
                methods.add(method)
                return method
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/OpenJdk6MapTests.java

      }
    
      @Override
      protected Collection<Method> suppressForConcurrentSkipListMap() {
        List<Method> methods = newArrayList();
        methods.addAll(super.suppressForConcurrentSkipListMap());
        methods.add(getContainsEntryWithIncomparableKeyMethod());
        methods.add(getContainsEntryWithIncomparableValueMethod());
        return methods;
      }
    
      @Override
      protected Collection<Method> suppressForHashtable() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/JavaMethodTest.groovy

        }
    
        def "call static methods successfully reflectively" () {
            when:
            JavaMethod.ofStatic(myProperties.class, Void, "setStaticProperty", String.class).invokeStatic("foo")
    
            then:
            JavaMethod.ofStatic(myProperties.class, String, "getStaticProperty").invokeStatic() == "foo"
        }
    
        def "static methods are identifiable" () {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/ClassDetails.java

        /**
         * Returns all methods of this class, including all inherited, private and static methods.
         */
        List<Method> getAllMethods();
    
        /**
         * Returns the non-private instance methods of this class that are not property getter or setter methods.
         * Includes inherited methods.
         */
        Collection<Method> getInstanceMethods();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/security/authz/builder/testdata/tcp/deny-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:
          - key: "request.headers[X-header]"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top