Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 934 for Reflection (0.17 sec)

  1. test/abi/bad_select_crash.go

    	}
    	if r3 != c3 {
    		NoteFailure(9, 42, 2, "genChecker42", "return", 3, true, uint64(0))
    	}
    	if r4 != c4 {
    		NoteFailure(9, 42, 2, "genChecker42", "return", 4, true, uint64(0))
    	}
    	// same call via reflection
    	Mode = "reflect"
    	rc := reflect.ValueOf(Test2)
    	rvslice := rc.Call([]reflect.Value{reflect.ValueOf(p0), reflect.ValueOf(p1), reflect.ValueOf(p2), reflect.ValueOf(p3)})
    	rr0i := rvslice[0].Interface()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 13:38:02 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

    import groovy.lang.MetaMethod;
    import groovy.lang.MetaProperty;
    import groovy.lang.MissingMethodException;
    import groovy.lang.MissingPropertyException;
    import org.codehaus.groovy.reflection.CachedClass;
    import groovy.lang.Tuple;
    import org.codehaus.groovy.reflection.ClassInfo;
    import org.codehaus.groovy.runtime.MetaClassHelper;
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Pair;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. src/math/gamma.go

    // approximated by a rational function of degree 6/7 in the
    // interval (2,3).  Large arguments are handled by Stirling's
    // formula. Large negative arguments are made positive using
    // a reflection formula.
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC      -34, 34      10000       1.3e-16     2.5e-17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java

       * FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6260652">Sun bug 6260652</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getToArrayIsPlainObjectArrayMethod() {
        return Helpers.getMethod(CollectionToArrayTester.class, "testToArray_isPlainObjectArray");
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

          return;
        }
        fail();
      }
    
      private static class BadEqualsFactory {
        /** oneConstantOnly matters now since it can be either null or the constant. */
        @SuppressWarnings("unused") // Called by reflection
        public static Object bad(String a, int b, @Nullable OneConstantEnum oneConstantOnly) {
          return new GoodEquals(a, b);
        }
      }
    
      public void testNullsOnReturnValues_good() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer/fuzzer.go

    					}
    				}
    			}
    		},
    		func(obj *apiextensions.JSONSchemaProps, c fuzz.Continue) {
    			// we cannot use c.FuzzNoCustom because of the interface{} fields. So let's loop with reflection.
    			vobj := reflect.ValueOf(obj).Elem()
    			tobj := reflect.TypeOf(obj).Elem()
    			for i := 0; i < tobj.NumField(); i++ {
    				field := tobj.Field(i)
    				switch field.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java

       * FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6260652">Sun bug 6260652</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getToArrayIsPlainObjectArrayMethod() {
        return Helpers.getMethod(CollectionToArrayTester.class, "testToArray_isPlainObjectArray");
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

    import com.google.common.collect.Sets;
    import com.google.common.primitives.Ints;
    import com.google.common.reflect.Invokable;
    import com.google.common.reflect.Parameter;
    import com.google.common.reflect.Reflection;
    import com.google.common.reflect.TypeToken;
    import com.google.common.testing.NullPointerTester.Visibility;
    import com.google.common.testing.RelationshipTester.Item;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

       * FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5045147">Sun bug 5045147</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getPutNullKeyUnsupportedMethod() {
        return Helpers.getMethod(MapPutTester.class, "testPut_nullKeyUnsupported");
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/EnumsTest.java

      @Retention(RetentionPolicy.RUNTIME)
      private @interface ExampleAnnotation {}
    
      private enum AnEnum {
        @ExampleAnnotation
        FOO,
        BAR
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public void testGetField() {
        Field foo = Enums.getField(AnEnum.FOO);
        assertEquals("FOO", foo.getName());
        assertTrue(foo.isAnnotationPresent(ExampleAnnotation.class));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top