Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 934 for Reflection (0.21 sec)

  1. android/guava-tests/test/com/google/common/collect/EnumHashBiMapTest.java

      @GwtIncompatible // serialize
      public void testSerializable() {
        SerializableTester.reserializeAndAssert(EnumHashBiMap.create(Currency.class));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public void testNulls() {
        new NullPointerTester().testAllPublicStaticMethods(EnumHashBiMap.class);
        new NullPointerTester().testAllPublicInstanceMethods(EnumHashBiMap.create(Currency.class));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/go/ast/print.go

    		t := x.Type()
    		p.printf("%s {", t)
    		p.indent++
    		first := true
    		for i, n := 0, t.NumField(); i < n; i++ {
    			// exclude non-exported fields because their
    			// values cannot be accessed via reflection
    			if name := t.Field(i).Name; IsExported(name) {
    				value := x.Field(i)
    				if p.filter == nil || p.filter(name, value) {
    					if first {
    						p.printf("\n")
    						first = false
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/internal/reflectlite/value.go

    // license that can be found in the LICENSE file.
    
    package reflectlite
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/unsafeheader"
    	"runtime"
    	"unsafe"
    )
    
    // Value is the reflection interface to a Go value.
    //
    // Not all methods apply to all kinds of values. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. pkg/kube/krt/bench_test.go

    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test"
    )
    
    type Workload struct {
    	krt.Named
    	ServiceNames []string
    	IP           string
    }
    
    // GetLabelSelector defaults to using Reflection which is slow. Provide a specialized implementation that does it more efficiently.
    type ServiceWrapper struct{ *v1.Service }
    
    func (s ServiceWrapper) GetLabelSelector() map[string]string {
    	return s.Spec.Selector
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/UnsignedBytes.java

      }
    
      /**
       * Provides a lexicographical comparator implementation; either a Java implementation or a faster
       * implementation based on {@link Unsafe}.
       *
       * <p>Uses reflection to gracefully fall back to the Java implementation if {@code Unsafe} isn't
       * available.
       */
      @VisibleForTesting
      static class LexicographicalComparatorHolder {
        static final String UNSAFE_COMPARATOR_NAME =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. 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)
  7. android/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)
  8. guava/src/com/google/common/primitives/UnsignedBytes.java

      }
    
      /**
       * Provides a lexicographical comparator implementation; either a Java implementation or a faster
       * implementation based on {@link Unsafe}.
       *
       * <p>Uses reflection to gracefully fall back to the Java implementation if {@code Unsafe} isn't
       * available.
       */
      @VisibleForTesting
      static class LexicographicalComparatorHolder {
        static final String UNSAFE_COMPARATOR_NAME =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/image/draw/bench_test.go

    					uint16(59 * y % 0x10000),
    					uint16((59*x + 53*y) % 0x10000),
    					0xffff,
    				})
    			}
    		}
    		dst = dst1
    	default:
    		// The == operator isn't defined on a color.Palette (a slice), so we
    		// use reflection.
    		if reflect.DeepEqual(dcm, palette) {
    			dst1 := image.NewPaletted(image.Rect(0, 0, dstw, dsth), palette)
    			for y := 0; y < dsth; y++ {
    				for x := 0; x < dstw; x++ {
    					dst1.SetColorIndex(x, y, uint8(x^y)&1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. pkg/api/testing/serialization_proto_test.go

    		t.Logf("marshal\n%s", hex.Dump(data))
    		t.Fatalf("Unmarshal is unequal\n%s", cmp.Diff(out, obj))
    	}
    }
    
    // BenchmarkEncodeCodec measures the cost of performing a codec encode, which includes
    // reflection (to clear APIVersion and Kind)
    func BenchmarkEncodeCodecProtobuf(b *testing.B) {
    	items := benchmarkItems(b)
    	width := len(items)
    	s := protobuf.NewSerializer(nil, nil)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top