Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for positions (0.83 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

            clientMap.put(Pattern.compile(regex), client);
        }
    
        /**
         * Adds a client with a regular expression pattern at a specific position.
         * @param regex The regular expression to match URLs.
         * @param client The CrawlerClient instance.
         * @param pos The position to add the client.
         */
        public void addClient(final String regex, final CrawlerClient client, final int pos) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java

            }
        }
    
        /**
         * Marks the current position in this input stream. A subsequent call to the reset method repositions this stream at the last marked position so that subsequent reads re-read the same bytes.
         * This method delegates to {@link FileInputStream#mark(int)}.
         *
         * @param readlimit the maximum limit of bytes that can be read before the mark position becomes invalid
         */
        @Override
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java

         */
        @Override
        public int available() throws IOException {
            return inputStream.available();
        }
    
        /**
         * Marks the current position in this input stream.
         *
         * @param readlimit the maximum limit of bytes that can be read before the mark position becomes invalid
         */
        @Override
        public synchronized void mark(final int readlimit) {
            inputStream.mark(readlimit);
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java

            assertEquals('B', stream.read());
    
            // Mark current position
            stream.mark(10);
    
            assertEquals('C', stream.read());
            assertEquals('D', stream.read());
    
            // Reset to marked position
            stream.reset();
    
            // Should read from marked position again
            assertEquals('C', stream.read());
            assertEquals('D', stream.read());
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                int start = startPosition - offset;
                if (start < 0) {
                    start = 0;
                }
                if (logger.isDebugEnabled()) {
                    logger.debug("Adjusted start position: original={}, adjusted={}, offset={}", startPosition, start, offset);
                }
                final SearchRequestParams reqParams = new SearchRequestParamsWrapper(params, start, pageSize);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/misc/Base64UtilTest.java

            assertEquals("Binary data length should match", binaryData.length, binaryDecoded.length);
            for (int i = 0; i < binaryData.length; i++) {
                assertEquals("Binary data should match at position " + i, binaryData[i], binaryDecoded[i]);
            }
        }
    
        /**
         * Test encode with single byte
         *
         * @throws Exception
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/ResponseDataUtilTest.java

                int bytesRead = fis.read(buffer);
                assertEquals(10000, bytesRead);
                for (int i = 0; i < largeData.length; i++) {
                    assertEquals("Mismatch at position " + i, largeData[i], buffer[i]);
                }
            } finally {
                // Clean up
                tempFile.delete();
            }
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java

                int bytesRead = stream.read(readBuffer);
    
                assertEquals(1024, bytesRead);
                for (int i = 0; i < data.length; i++) {
                    assertEquals("Mismatch at position " + i, data[i], readBuffer[i]);
                }
            }
        }
    
        public void test_fileNotFoundException() {
            // Test with non-existent file
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         * Accumulates text content in a buffer for later processing when the element ends.
         *
         * @param ch the characters from the XML document
         * @param start the start position in the character array
         * @param length the number of characters to use from the character array
         * @throws SAXException if a SAX error occurs during character processing
         */
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_it.properties

    labels.logLevel=Livello di log
    labels.purgeSearchLogDay=Elimina log di ricerca
    labels.query=Query
    labels.queryId=ID query
    labels.rt=rt
    labels.searchLog=Log di ricerca
    labels.sort=Ordina
    labels.start=Posizione iniziale
    labels.loginRequired=Login richiesto
    labels.loginLink=Mostra link di login
    labels.threadName=Nome thread
    labels.url=URL
    labels.userFavorite=Log preferiti
    labels.userInfo=Informazioni utente
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 09:16:23 UTC 2025
    - 46.6K bytes
    - Viewed (0)
Back to top