Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 0011 (1.6 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/builder/RequestDataBuilderTest.java

            assertEquals(data1.getUrl(), data2.getUrl());
            assertEquals(data1.getWeight(), data2.getWeight(), 0.001f);
    
            assertEquals(data2.getMethod(), data3.getMethod());
            assertEquals(data2.getUrl(), data3.getUrl());
            assertEquals(data2.getWeight(), data3.getWeight(), 0.001f);
        }
    
        public void test_overwritingValues() {
            // Test that later values overwrite earlier ones
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RequestDataTest.java

            // Default weight should be 1.0
            assertEquals(1.0f, data.getWeight(), 0.001f);
    
            data.setWeight(0.5f);
            assertEquals(0.5f, data.getWeight(), 0.001f);
    
            data.setWeight(2.5f);
            assertEquals(2.5f, data.getWeight(), 0.001f);
    
            data.setWeight(0.0f);
            assertEquals(0.0f, data.getWeight(), 0.001f);
        }
    
        public void test_equalsAndHashCode() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/UrlQueueImplTest.java

            // Default weight should be 1.0
            assertEquals(1.0f, queue.getWeight(), 0.001f);
    
            queue.setWeight(0.5f);
            assertEquals(0.5f, queue.getWeight(), 0.001f);
    
            queue.setWeight(2.5f);
            assertEquals(2.5f, queue.getWeight(), 0.001f);
    
            queue.setWeight(0.0f);
            assertEquals(0.0f, queue.getWeight(), 0.001f);
        }
    
        public void test_toString() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponseTest.java

            String[][] readings = new String[1][];
            readings[0] = new String[] { "word1" };
            items.add(new SuggestItem(new String[] { "word1" }, readings, new String[] { "content" }, 0, 10, -1, new String[] { "tag1" },
                    new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.QUERY));
    
            PopularWordsResponse response = new PopularWordsResponse("test-index", 100, words, 10, items);
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  5. pom.xml

    	<version>1.3.2-SNAPSHOT</version>
    	<packaging>jar</packaging>
    	<name>cUrl-Like Java client</name>
    	<description>cUrl-Like Java client</description>
    	<url>https://github.com/codelibs/curl4j</url>
    	<inceptionYear>2011</inceptionYear>
    	<licenses>
    		<license>
    			<name>The Apache Software License, Version 2.0</name>
    			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    			<distribution>repo</distribution>
    		</license>
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Sat Dec 20 04:17:15 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java

                    new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.QUERY);
    
            // User
            String[][] readings2 = new String[1][];
            readings2[0] = new String[] { "user1" };
            items[1] = new SuggestItem(new String[] { "ユーザー1" }, readings2, new String[] { "content" }, 0, 1, -1, new String[] { "tag1" },
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 28.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

        public void testCreateBulkLineWithNullId() {
            // Test that null ID causes exception
            SuggestItem item = new SuggestItem(new String[] { "text" }, new String[0][0], new String[0], 0, 0, 1.0f, new String[0],
                    new String[0], new String[0], SuggestItem.Kind.DOCUMENT);
            // Explicitly set ID to null (constructor auto-generates ID)
            item.setId(null);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

         */
        @Test
        @SuppressWarnings("unchecked")
        public void testGetIndicesForAlias_existingAlias() throws Exception {
            final String indexName = "test-index-001";
            final String aliasName = "test-alias";
    
            // Create index with alias
            final CreateIndexResponse response =
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertEquals("010203", StringUtil.toHex(new byte[] { 1, 2, 3 }));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToHex2() throws Exception {
            assertEquals("0001", StringUtil.toHex(1));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testAppendHex() throws Exception {
            final StringBuilder buf = new StringBuilder();
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                        readings[j] = l.toArray(String[]::new);
                    }
    
                    items.add(new SuggestItem(words, readings, new String[] { field }, 0, 1, -1, tags, roles, null, SuggestItem.Kind.QUERY));
                }
            } catch (final IOException e) {
                throw new SuggesterException("Failed to create SuggestItem from query log.", e);
            }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top