Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for T3 (0.03 sec)

  1. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

         * all calling acquire() at these moments:
         *
         * T0 at 0 seconds
         * T1 at 1.05 seconds
         * T2 at 2 seconds
         * T3 at 3 seconds
         *
         * Due to the slight delay of T1, T2 would have to sleep till 2.05 seconds, and T3 would also
         * have to sleep till 3.05 seconds.
         */
        return create(permitsPerSecond, SleepingStopwatch.createFromSystemTimer());
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/RateLimiter.java

         * all calling acquire() at these moments:
         *
         * T0 at 0 seconds
         * T1 at 1.05 seconds
         * T2 at 2 seconds
         * T3 at 3 seconds
         *
         * Due to the slight delay of T1, T2 would have to sleep till 2.05 seconds, and T3 would also
         * have to sleep till 3.05 seconds.
         */
        return create(permitsPerSecond, SleepingStopwatch.createFromSystemTimer());
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(actualSubtype.getActualTypeArguments()[0]).isInstanceOf(WildcardType.class);
      }
    
      public <T> void testGetSubtype_manyGenericArgs() {
        class FourTypeArgs<T1, T2, T3, T4> {}
        class ThreeTypeArgs<T1, T2, T3> extends FourTypeArgs<T1, T2, T3, String> {}
        TypeToken<FourTypeArgs<T, Integer, ?, ?>> supertype =
            new TypeToken<FourTypeArgs<T, Integer, ?, ?>>() {};
        TypeToken<ThreeTypeArgs<T, Integer, String>> subtype =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(actualSubtype.getActualTypeArguments()[0]).isInstanceOf(WildcardType.class);
      }
    
      public <T> void testGetSubtype_manyGenericArgs() {
        class FourTypeArgs<T1, T2, T3, T4> {}
        class ThreeTypeArgs<T1, T2, T3> extends FourTypeArgs<T1, T2, T3, String> {}
        TypeToken<FourTypeArgs<T, Integer, ?, ?>> supertype =
            new TypeToken<FourTypeArgs<T, Integer, ?, ?>>() {};
        TypeToken<ThreeTypeArgs<T, Integer, String>> subtype =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  5. doc/go_spec.html

    // invalid array types
    type (
    	T1 [10]T1                 // element type of T1 is T1
    	T2 [10]struct{ f T2 }     // T2 contains T2 as component of a struct
    	T3 [10]T4                 // T3 contains T3 as component of a struct in T4
    	T4 struct{ f T3 }         // T4 contains T4 as component of array T3 in a struct
    )
    
    // valid array types
    type (
    	T5 [10]*T5                // T5 contains T5 as component of a pointer
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arch.go

    	register["S6"] = riscv.REG_S6
    	register["S7"] = riscv.REG_S7
    	register["S8"] = riscv.REG_S8
    	register["S9"] = riscv.REG_S9
    	register["S10"] = riscv.REG_S10
    	// Skip S11 as it is the g register.
    	register["T3"] = riscv.REG_T3
    	register["T4"] = riscv.REG_T4
    	register["T5"] = riscv.REG_T5
    	register["T6"] = riscv.REG_T6
    
    	// Go runtime register names.
    	register["g"] = riscv.REG_G
    	register["CTXT"] = riscv.REG_CTXT
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 24 12:32:56 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    a pointer type. The unqualified type name acts as the field name.
    </p>
    
    <pre>
    // A struct with four embedded fields of types T1, *T2, P.T3 and *P.T4
    struct {
    	T1        // field name is T1
    	*T2       // field name is T2
    	P.T3      // field name is T3
    	*P.T4     // field name is T4
    	x, y int  // field names are x and y
    }
    </pre>
    
    <p>
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top