Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for genMetrics (0.18 sec)

  1. guava/src/com/google/common/reflect/TypeToken.java

    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Comparator;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import javax.annotation.CheckForNull;
    
    /**
     * A {@link Type} with generics.
     *
     * <p>Operations that are otherwise only available in {@link Class} are implemented to support
     * {@code Type}, for example {@link #isSubtypeOf}, {@link #isArray} and {@link #getComponentType}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Comparator;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import javax.annotation.CheckForNull;
    
    /**
     * A {@link Type} with generics.
     *
     * <p>Operations that are otherwise only available in {@link Class} are implemented to support
     * {@code Type}, for example {@link #isSubtypeOf}, {@link #isArray} and {@link #getComponentType}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    		{`package p3; type x int`, `x`, `type p3.x int`},
    		{`package p4; func f()`, `f`, `func p4.f()`},
    		{`package p5; func f() int { x, _ := 1, 2; return x }`, `_`, `var _ int`},
    
    		// Tests using generics.
    		{`package g0; type x[T any] int`, `x`, `type g0.x[T any] int`},
    		{`package g1; func f[T any]() {}`, `f`, `func g1.f[T any]()`},
    		{`package g2; type x[T any] int; func (*x[_]) m() {}`, `m`, `func (*g2.x[_]).m()`},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		{`package p3; type x int`, `x`, `type p3.x int`},
    		{`package p4; func f()`, `f`, `func p4.f()`},
    		{`package p5; func f() int { x, _ := 1, 2; return x }`, `_`, `var _ int`},
    
    		// Tests using generics.
    		{`package g0; type x[T any] int`, `x`, `type g0.x[T any] int`},
    		{`package g1; func f[T any]() {}`, `f`, `func g1.f[T any]()`},
    		{`package g2; type x[T any] int; func (*x[_]) m() {}`, `m`, `func (*g2.x[_]).m()`},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    	typeDeferwidth             // width computation has been deferred and type is on deferredTypeStack
    	typeRecur
    	typeIsShape  // represents a set of closely related types, for generics
    	typeHasShape // there is a shape somewhere in the type
    )
    
    func (t *Type) NotInHeap() bool  { return t.flags&typeNotInHeap != 0 }
    func (t *Type) Noalg() bool      { return t.flags&typeNoalg != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Some changes in static type checking have resulted in source-code incompatibilities. One of these occurs if you were casting a closure to an `Action` without generics. Starting with 3.0.18, this now results in the parameter of the closure being `Object` instead of any explicit type specified. This can be fixed by adding the appropriate type to the cast, and the redundant parameter declaration can be removed:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top