Search Options

Results per page
Sort
Preferred Languages
Advance

Results 521 - 530 of 1,963 for contain (0.04 sec)

  1. android/guava/src/com/google/common/primitives/Longs.java

       * constraining a {@code long} input to an {@code int} range.
       *
       * @param value the {@code long} value to constrain
       * @param min the lower bound (inclusive) of the range to constrain {@code value} to
       * @param max the upper bound (inclusive) of the range to constrain {@code value} to
       * @throws IllegalArgumentException if {@code min > max}
       * @since 21.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralTest.java

            // When
            String result = trans2GetDfsReferral.toString();
    
            // Then
            assertNotNull(result);
            assertTrue(result.contains("Trans2GetDfsReferral"));
            assertTrue(result.contains("maxReferralLevel=0x3"));
            assertTrue(result.contains("filename=" + filename));
        }
    
        @Test
        @DisplayName("toString should handle null path")
        void testToStringWithNullPath() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

             * @return the list of individual notification messages contained in this response
             */
            public List<WitnessNotificationMessage> getMessages() {
                return messages;
            }
    
            /**
             * Sets the list of notification messages.
             *
             * @param messages the list of individual notification messages contained in this response
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/PathValidator.java

                log.warn("Path contains null bytes: {}", sanitizeForLog(path));
                throw new SmbException("Path contains null bytes");
            }
    
            // Check for control characters
            if (strictMode && CONTROL_CHARS.matcher(path).find()) {
                log.warn("Path contains control characters: {}", sanitizeForLog(path));
                throw new SmbException("Path contains control characters");
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java

            assertEquals(servletException, runtimeException.getCause());
    
            // Verify that the message is preserved from the cause
            assertTrue(runtimeException.getMessage().contains(ServletException.class.getName()));
            assertTrue(runtimeException.getMessage().contains(errorMessage));
        }
    
        public void test_constructor_withServletExceptionWithCause() {
            // Create a root cause exception
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/PingResponseTest.java

    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  7. android-test/src/androidTest/java/okhttp/android/test/sni/SniOverrideTest.kt

     * limitations under the License.
     */
    package okhttp.android.test.sni
    
    import android.os.Build
    import android.util.Log
    import assertk.assertThat
    import assertk.assertions.contains
    import assertk.assertions.isEqualTo
    import java.security.cert.X509Certificate
    import javax.net.ssl.SNIHostName
    import javax.net.ssl.SNIServerName
    import javax.net.ssl.SSLSocket
    import javax.net.ssl.SSLSocketFactory
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertTrue(docString.contains("<SCRIPT>"));
            assertTrue(docString.contains("foo"));
            assertTrue(docString.contains("<NOSCRIPT>"));
            assertTrue(docString.contains("bar"));
            assertTrue(pnString.contains("<SCRIPT>"));
            assertTrue(pnString.contains("foo"));
            assertFalse(pnString.contains("<NOSCRIPT>"));
            assertFalse(pnString.contains("bar"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            assertTrue(populatedString.contains("documentItems=[{title=Test}]"));
            assertTrue(populatedString.contains("pageSize=20"));
            assertTrue(populatedString.contains("currentPageNumber=2"));
            assertTrue(populatedString.contains("allRecordCount=100"));
            assertTrue(populatedString.contains("execTime=0.5 sec"));
            assertTrue(populatedString.contains("searchQuery=test query"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/MediaType.java

      /**
       * The 3GP multimedia container format. For more information, see <a
       * href="ftp://www.3gpp.org/tsg_sa/TSG_SA/TSGS_23/Docs/PDF/SP-040065.pdf#page=10">3GPP TS
       * 26.244</a>.
       *
       * @since 20.0
       */
      public static final MediaType THREE_GPP_VIDEO = createConstant(VIDEO_TYPE, "3gpp");
    
      /**
       * The 3G2 multimedia container format. For more information, see <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
Back to top