Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 3,830 for asString (0.04 sec)

  1. src/main/java/org/codelibs/core/convert/LongConversionUtil.java

         *            the object to convert
         * @param pattern
         *            the pattern string
         * @return the converted {@link Long}
         */
        public static Long toLong(final Object o, final String pattern) {
            return switch (o) {
            case null -> null;
            case Long l -> l;
            case Number n -> n.longValue();
            case String s -> toLong(s);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/util/StringUtilTest.java

        void testJoinWithMixedCharSequenceTypes() {
            String str = "string";
            StringBuilder builder = new StringBuilder("builder");
            StringBuffer buffer = new StringBuffer("buffer");
            String result = StringUtil.join(",", str, builder, buffer);
            assertEquals("string,builder,buffer", result);
        }
    
        @ParameterizedTest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

            RelatedQuery entity = createRelatedQuery("term", new String[] { "query" }, "");
            String key = relatedQueryHelper.getHostKey(entity);
            assertEquals("", key);
        }
    
        public void test_getHostKey_nullVirtualHost() {
            RelatedQuery entity = createRelatedQuery("term", new String[] { "query" }, null);
            String key = relatedQueryHelper.getHostKey(entity);
            assertEquals("", key);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/HttpHeaders.java

        public static final String SAME_ORIGIN = "same-origin";
        public static final String ORIGIN = "origin";
        public static final String STRICT_ORIGIN = "strict-origin";
        public static final String ORIGIN_WHEN_CROSS_ORIGIN = "origin-when-cross-origin";
        public static final String STRICT_ORIGIN_WHEN_CROSS_ORIGIN = "strict-origin-when-cross-origin";
        public static final String UNSAFE_URL = "unsafe-url";
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         */
        public CharMappingFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        /**
         * Returns the type identifier for this dictionary file.
         *
         * @return the string "mapping" identifying this as a character mapping file
         */
        @Override
        public String getType() {
            return MAPPING;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/cors/CorsHandler.java

         */
        protected static final String ACCESS_CONTROL_ALLOW_ORIGIN = "Access-Control-Allow-Origin";
    
        /**
         * CORS header for specifying allowed headers.
         */
        protected static final String ACCESS_CONTROL_ALLOW_HEADERS = "Access-Control-Allow-Headers";
    
        /**
         * CORS header for specifying allowed HTTP methods.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/NameServiceClient.java

         * @return resolved addresses
         * @throws java.net.UnknownHostException
         *             if there is an error resolving the name
         */
        NetbiosAddress[] getNbtAllByAddress(String host, int type, String scope) throws UnknownHostException;
    
        /**
         * Retrieve all addresses of a host by it's address. NetBIOS hosts can
         * have many names for a given IP address. The name and IP address make the
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            // Test constructor with message only
            String message = "SSO login failed";
            SsoLoginException exception = new SsoLoginException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and cause
            String message = "SSO authentication error";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebConfig.java

        /** configParameter */
        protected String configParameter;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** depth */
        protected Integer depth;
    
        /** description */
        protected String description;
    
        /** excludedDocUrls */
        protected String excludedDocUrls;
    
        /** excludedUrls */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileConfig.java

        /** configParameter */
        protected String configParameter;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** depth */
        protected Integer depth;
    
        /** description */
        protected String description;
    
        /** excludedDocPaths */
        protected String excludedDocPaths;
    
        /** excludedPaths */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 13.7K bytes
    - Viewed (0)
Back to top