Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 94 of 94 for inOrder (0.05 sec)

  1. guava-tests/test/com/google/common/primitives/FloatsTest.java

        list.set(0, (float) 2);
        assertThat(array).isEqualTo(new float[] {(float) 2, (float) 1});
        array[1] = (float) 3;
        assertThat(list).containsExactly((float) 2, (float) 3).inOrder();
      }
    
      public void testAsList_toArray_roundTrip() {
        float[] array = {(float) 0, (float) 1, (float) 2};
        List<Float> list = Floats.asList(array);
        float[] newArray = Floats.toArray(list);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/LongsTest.java

        List<Long> list = Longs.asList(array);
        list.set(0, (long) 2);
        assertThat(array).isEqualTo(new long[] {(long) 2, (long) 1});
        array[1] = (long) 3;
        assertThat(list).containsExactly((long) 2, (long) 3).inOrder();
      }
    
      public void testAsList_toArray_roundTrip() {
        long[] array = {(long) 0, (long) 1, (long) 2};
        List<Long> list = Longs.asList(array);
        long[] newArray = Longs.toArray(list);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        makeUnmodifiable(types.interfaces()).containsExactly(TypeToken.of(Interface1.class));
        makeUnmodifiable(types.classes())
            .containsExactly(TypeToken.of(Class1.class), TypeToken.of(Object.class))
            .inOrder();
      }
    
      public <A extends Class1 & Interface1, B extends A>
          void testGetTypes_rawTypes_ignoresTypeVariablesByDefault() {
    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. CHANGELOG/CHANGELOG-1.19.md

    - Added feature support to Windows for configuring session affinity of Kubernetes services.
      required: [Windows Server vNext Insider Preview Build 19551](https://blogs.windows.com/windowsexperience/2020/01/28/announcing-windows-server-vnext-insider-preview-build-19551/) (or higher) ([#91701](https://github.com/kubernetes/kubernetes/pull/91701), [@elweb9858](https://github.com/elweb9858)) [SIG Network and Windows]
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top