Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for ohne (0.01 sec)

  1. src/main/resources/fess_label_de.properties

    labels.advance_search_must_queries=mit allen Wörtern
    labels.advance_search_phrase_query=mit der exakten Wortgruppe
    labels.advance_search_should_queries=mit mindestens einem der Wörter
    labels.advance_search_not_queries=ohne die Wörter
    labels.advance_search_filetype=Dateityp
    labels.advance_search_filetype_default=Beliebiges Format
    labels.advance_search_filetype_html=HTML
    labels.advance_search_filetype_pdf=PDF
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.9K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

        boolean isFrameworkDebug();
    
        /**
         * Get the value for the key 'time.adjust.time.millis'. <br>
         * The value is, e.g. 0 <br>
         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

            suggester.createIndexIfNothing();
            Thread.sleep(100);
    
            // Verify initial state - should have one index
            GetAliasesResponse aliasResponse = client.admin().indices().prepareGetAliases(suggester.getIndex()).execute().actionGet();
            assertTrue("Should have at least one index initially", aliasResponse.getAliases().size() >= 1);
    
            // Create next index - this is the main method we're testing
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/io/SerializeUtilTest.java

            map.put("one", 1);
            map.put("two", 2);
            binary = SerializeUtil.fromObjectToBinary(map);
            @SuppressWarnings("unchecked")
            final Map<String, Integer> resultMap = (Map<String, Integer>) SerializeUtil.fromBinaryToObject(binary);
            assertEquals(map.size(), resultMap.size());
            assertEquals(map.get("one"), resultMap.get("one"));
        }
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/crypto/CachedCipher.java

         */
        @Deprecated
        public String decryptoText(final String text) {
            return decryptText(text);
        }
    
        /**
         * Polls an encryption cipher from the queue, creating a new one if none are available.
         *
         * @return an encryption cipher
         */
        protected Cipher pollEncryptoCipher() {
            Cipher cipher = encryptoQueue.poll();
            if (cipher == null) {
                try {
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java

     * When multiple extractors are associated with a single key, they are sorted by weight
     * in descending order. The {@link #getExtractor(String)} method returns a composite
     * extractor that iterates through the available extractors until one successfully
     * extracts the data.
     * </p>
     *
     * <p>
     * The class uses a {@link CrawlerContainer} for managing crawler components and
     * supports dependency injection via the {@link Resource} annotation.
     * </p>
     */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java

         * Should continue processing valid entries even when some fail.
         */
        public void test_ZipExtractor_mixedEntries_continuesProcessing() throws IOException {
            // Create a ZIP with one valid text file
            final ByteArrayOutputStream baos = new ByteArrayOutputStream();
            try (final ZipOutputStream zos = new ZipOutputStream(baos)) {
                // Add a valid text entry
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/LruHashMap.java

     * <p>
     * <strong>Thread-Safety:</strong> This class is <strong>NOT thread-safe</strong>.
     * It extends {@link LinkedHashMap} without synchronization. If multiple threads access
     * an instance concurrently, and at least one thread modifies the map structurally,
     * it must be synchronized externally.
     * </p>
     * <p>
     * For thread-safe usage, wrap with {@link java.util.Collections#synchronizedMap(Map)}:
     * </p>
     * <pre>
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java

            assertTrue(cos.isInMemory());
            assertFalse(cos.done);
            cos.close();
        }
    
        @Test
        public void testSingleByteWrites() throws IOException {
            // Writing one byte at a time
            ContentOutputStream cos = new ContentOutputStream(5, Curl.tmpDir);
            for (int i = 0; i < 3; i++) {
                cos.write(i);
            }
            assertTrue(cos.isInMemory());
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Wed Nov 12 14:01:04 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

            assertEquals("single", singleKeyword[0]);
        }
    
        @Test
        public void testParseQueryWithTooManyTerms() {
            // Test query with more than MAX_QUERY_TERM_NUM (5) terms
            String query = "one two three four five six seven";
            String field = "content";
            String[] keywords = SuggestUtil.parseQuery(query, field);
            assertNotNull(keywords);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 26.7K bytes
    - Viewed (0)
Back to top