Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 820 for EMPTY (0.01 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketReaderTest.kt

        data.write("8a00".decodeHex()) // Pong
        data.write("80026c6f".decodeHex()) // lo
        clientReader.processNextFrame()
        callback.assertPong(EMPTY)
        callback.assertPong(EMPTY)
        callback.assertPong(EMPTY)
        callback.assertPong(EMPTY)
        callback.assertTextMessage("Hello")
      }
    
      @Test fun clientTwoFrameCompressedHelloWithPongs() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            };
    
            assertEquals("Empty minKey should be empty string", "", emptyKeysAnnotation.minKey());
            assertEquals("Empty maxKey should be empty string", "", emptyKeysAnnotation.maxKey());
            assertTrue("Empty minKey should match StringUtil.EMPTY", StringUtil.EMPTY.equals(emptyKeysAnnotation.minKey()));
            assertTrue("Empty maxKey should match StringUtil.EMPTY", StringUtil.EMPTY.equals(emptyKeysAnnotation.maxKey()));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/stream/StreamUtil.java

         * If the input array is {@code null}, an empty stream is returned.
         *
         * @param <T> The type of elements in the stream.
         * @param values The elements to be included in the stream. Can be {@code null}.
         * @return A {@link StreamOf} instance containing the provided values, or an empty stream if {@code values} is {@code null}.
         */
        @SafeVarargs
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of clustername, used in parameter comment. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/BeanDesc.java

         *            The property name. Must not be {@literal null} or empty string
         * @return Whether the {@link PropertyDesc} exists
         */
        boolean hasPropertyDesc(String propertyName);
    
        /**
         * Returns the {@link PropertyDesc}.
         *
         * @param propertyName
         *            The property name. Must not be {@literal null} or empty string
         * @return {@link PropertyDesc}
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         * Sets a converter for dates.
         *
         * @param pattern
         *            The date pattern. Must not be {@literal null} or an empty string.
         * @param propertyNames
         *            The property names to which this converter will be applied. Each element must not be {@literal null} or an empty string.
         * @return This instance itself
         * @see DateConverter
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/LineIterator.java

     */
    public class LineIterator implements Iterator<String> {
    
        /** String object indicating that {@link #line} is empty */
        protected static final String EMPTY = new String();
    
        /** {@link BufferedReader} */
        protected final BufferedReader reader;
    
        /** The line that has been read */
        protected String line = EMPTY;
    
        /**
         * Returns an {@link Iterable} that wraps a {@link LineIterator} for use in enhanced for-loops.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setDefaultLabelValue(final String value) {
            setSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, value);
            propMap.remove(DEFAULT_LABEL_VALUES);
        }
    
        default String getDefaultLabelValue() {
            return getSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, StringUtil.EMPTY);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/BooleansTest.java

        assertThat(Booleans.concat()).isEqualTo(EMPTY);
        assertThat(Booleans.concat(EMPTY)).isEqualTo(EMPTY);
        assertThat(Booleans.concat(EMPTY, EMPTY, EMPTY)).isEqualTo(EMPTY);
        assertThat(Booleans.concat(ARRAY_FALSE)).isEqualTo(ARRAY_FALSE);
        assertThat(Booleans.concat(ARRAY_FALSE)).isNotSameInstanceAs(ARRAY_FALSE);
        assertThat(Booleans.concat(EMPTY, ARRAY_FALSE, EMPTY)).isEqualTo(ARRAY_FALSE);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/search.jsp

    				href="#searchOptions" class="badge text-bg-primary text-decoration-none"
    				data-bs-toggle="collapse"> <c:if test="${empty lang}">
    						<la:message key="labels.searchoptions_all" />
    					</c:if> <c:if test="${!empty lang}">
    						<c:forEach var="sLang" items="${lang}">
    							<c:forEach var="item" items="${langItems}">
    								<c:if test="${item.value==sLang}">${f:h(item.label)}</c:if>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top