Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 44 of 44 for test_list (0.07 seconds)

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

        }
      }
    
      // We need to test that asList() really does return the original list.
      @SuppressWarnings("InlineMeInliner")
      public void testAsList() {
        ImmutableList<String> list = ImmutableList.of("a", "b");
        assertThat(list.asList()).isSameInstanceAs(list);
      }
    
      @SuppressWarnings("ModifiedButNotUsed")
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 23.8K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      @SuppressWarnings({"deprecation", "static-access", "DoNotCall"})
      public void testBuilderMethod() {
        assertThrows(UnsupportedOperationException.class, () -> ImmutableSortedSet.builder());
      }
    
      public void testAsList() {
        ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u");
        ImmutableList<String> list = set.asList();
        assertEquals(ImmutableList.of("a", "e", "i", "o", "u"), list);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 46.3K bytes
    - Click Count (0)
  3. cmd/testdata/decryptObjectInfo.json.zst

    rWgJiyjSbNFHW+HkRTb7YIoat4w+KYvMxD+Gb62YllcpdxoZRYkW6on/qQ==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/go/testdata/src/testlist/test_test.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"GQzdbuMyK5+4RKlHiHqfOMxChl9lCtk=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAL4l9rYXr...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Oct 29 16:34:20 GMT 2020
    - 164K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      @SuppressWarnings({"deprecation", "static-access", "DoNotCall"})
      public void testBuilderMethod() {
        assertThrows(UnsupportedOperationException.class, () -> ImmutableSortedSet.builder());
      }
    
      public void testAsList() {
        ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u");
        ImmutableList<String> list = set.asList();
        assertEquals(ImmutableList.of("a", "e", "i", "o", "u"), list);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 47.2K bytes
    - Click Count (0)
Back to Top