Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for emptyArray (0.04 sec)

  1. src/test/java/org/codelibs/core/io/SerializeUtilTest.java

         *
         * @throws Exception
         */
        public void testFromBinaryToObject_EmptyArray() throws Exception {
            final String[] emptyArray = new String[0];
            final byte[] binary = SerializeUtil.fromObjectToBinary(emptyArray);
            final String[] result = (String[]) SerializeUtil.fromBinaryToObject(binary);
            assertEquals(0, result.length);
        }
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

            throw KeyStoreException("unable to support unencodable private key")
          }
    
          val keyManager = newKeyManager(null, heldCertificate, *(intermediates ?: emptyArray()))
          val trustManager = newTrustManager(null, trustedCertificates, immutableInsecureHosts)
          return HandshakeCertificates(keyManager, trustManager)
        }
      }
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/RegularImmutableSet.java

    final class RegularImmutableSet<E> extends ImmutableSet.CachingAsList<E> {
      private static final Object[] EMPTY_ARRAY = new Object[0];
      static final RegularImmutableSet<Object> EMPTY =
          new RegularImmutableSet<>(EMPTY_ARRAY, 0, EMPTY_ARRAY, 0);
    
      private final transient Object[] elements;
      private final transient int hashCode;
      // the same values as `elements` in hashed positions (plus nulls)
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 21:07:18 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top