Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 4,126 for asString (0.07 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionParser.java

        /**
         * Parses the specified version string, for example "1.0".
         *
         * @param version the version string to parse, must not be {@code null}
         * @return the parsed version, never {@code null}
         * @throws VersionParserException if the string violates the syntax rules of this scheme
         * @see org.apache.maven.api.Session#parseVersion(String)
         */
        @Nonnull
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/RelatedQueryTests.java

        private static final String NAME_PREFIX = "relatedQueryTest_";
        private static final String API_PATH = "/api/admin/relatedquery";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "term";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/CompactHashMapTest.java

            MapTestSuiteBuilder.using(
                    new TestStringMapGenerator() {
                      @Override
                      protected Map<String, String> create(Entry<String, String>[] entries) {
                        Map<String, String> map = CompactHashMap.create();
                        for (Entry<String, String> entry : entries) {
                          map.put(entry.getKey(), entry.getValue());
                        }
                        return map;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 25 16:19:30 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/OsddHelper.java

        private static final Logger logger = LogManager.getLogger(OsddHelper.class);
    
        /** The OSDD file path. */
        protected String osddPath;
    
        /** The encoding for OSDD file. */
        protected String encoding = Constants.UTF_8;
    
        /** The content type for OSDD response. */
        protected String contentType = "text/xml"; // "application/opensearchdescription+xml"
    
        /** The OSDD file. */
        protected File osddFile;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java

        }
    
        /**
         * Returns the native LAN Manager string reported by the server.
         *
         * @return the nativeLanMan
         */
        public final String getNativeLanMan() {
            return this.nativeLanMan;
        }
    
        /**
         * Returns the native operating system string reported by the server.
         *
         * @return the nativeOs
         */
        public final String getNativeOs() {
            return this.nativeOs;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

         * @return the query map
         */
        public Map<String, String> getQueryMap() {
            return queryMap;
        }
    
        /**
         * Adds a query to the query map with the specified display key.
         *
         * @param key the display key for the query
         * @param query the query string to add
         */
        public void addQuery(final String key, final String query) {
            queryMap.put(key, query);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            System.setProperty("java.version", "11.0.1");
            String[] result = JvmUtil.filterJvmOptions(new String[0]);
            assertEquals(0, result.length);
        }
    
        public void test_filterJvmOptions_singleElement() {
            System.setProperty("java.version", "11.0.1");
    
            String[] result = JvmUtil.filterJvmOptions(new String[] { "-Xmx1g" });
            assertEquals(1, result.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

            String message = "";
            StorageException exception = new StorageException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructorWithMessageAndNullCause() {
            // Test constructor with message and null cause
            String message = "Storage error";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            String url = "http://test.com";
            String result = helper.convert(url);
    
            assertNotNull(result);
            assertNotNull(helper.duplicateHostList);
        }
    
        public void test_convert_emptyList() {
            DuplicateHostHelper helper = new DuplicateHostHelper();
            helper.duplicateHostList = new ArrayList<>();
    
            String url = "http://test.com";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDuplicateHost.java

        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** duplicateHostName */
        protected String duplicateHostName;
    
        /** regularName */
        protected String regularName;
    
        /** sortOrder */
        protected Integer sortOrder;
    
        /** updatedBy */
        protected String updatedBy;
    
        /** updatedTime */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top