Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 253 for only (0.27 sec)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            protected Writer writer;
    
            /** The mapping item being updated, or null for read-only operations. */
            protected CharMappingItem item;
    
            /**
             * Constructs a new MappingUpdater for handling file updates.
             *
             * @param newItem the character mapping item to update, or null for read-only operations
             */
            protected MappingUpdater(final CharMappingItem newItem) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

            }
        }
    
        /**
         * Traverses classes contained in a Jar file.
         * <p>
         * If the specified Jar file has the extension <code>.war</code>, only entries whose path starts with the prefix <code>WEB-INF/classes</code> are traversed.
         * The handler receives the entry name excluding the prefix. For example, if the Jar file contains <code>/WEB-INF/classes/ccc/ddd/Eee.class</code>,
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    **Test Count**: 10 tests
    
    **Key Scenarios**:
    - ✅ Valid filename extraction
    - ✅ Null parameters handling
    - ✅ Empty/missing resource name
    - ✅ Special characters in filename (Japanese, paths)
    - ✅ Input stream not consumed (only validated)
    - ✅ Whitespace and empty string handling
    
    ---
    
    ### 3. ArchiveExtractorErrorHandlingTest.java
    **Purpose**: Test improved error handling in archive extractors.
    
    **Key Test Areas**:
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java

            super(config, SMB2_CLOSE);
            this.fileId = fileId;
            this.fileName = fileName;
        }
    
        /**
         * Constructs a close request with file ID only
         *
         * @param config
         *            The configuration to use
         * @param fileId
         *            The file ID to close
         */
        public Smb2CloseRequest(final Configuration config, final byte[] fileId) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. LICENSE

          or other liability obligations and/or rights consistent with this
          License. However, in accepting such obligations, You may act only
          on Your own behalf and on Your sole responsibility, not on behalf
          of any other Contributor, and only if You agree to indemnify,
          defend, and hold each Contributor harmless for any liability
          incurred by, or claims asserted against, such Contributor by reason
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Jan 11 04:26:17 UTC 2021
    - 11.1K bytes
    - Viewed (0)
  6. LICENSE

          or other liability obligations and/or rights consistent with this
          License. However, in accepting such obligations, You may act only
          on Your own behalf and on Your sole responsibility, not on behalf
          of any other Contributor, and only if You agree to indemnify,
          defend, and hold each Contributor harmless for any liability
          incurred by, or claims asserted against, such Contributor by reason
    Registered: Sat Dec 20 08:54:13 UTC 2025
    - Last Modified: Thu Feb 20 19:53:57 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  7. CLAUDE.md

    ## Development Commands
    
    ### Build and Test
    ```bash
    # Clean build and run tests
    mvn clean test
    
    # Full build with packaging
    mvn clean package
    
    # Run tests only
    mvn test
    
    # Run specific tests
    mvn test -Dtest=CurlTest
    mvn test -Dtest=CurlRequestTest
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractorEnhancedTest.java

            assertNotNull(result);
            assertEquals("/path/to/document.pdf", result.getContent());
        }
    
        /**
         * Test that input stream content is not read (only validated).
         */
        public void test_getText_doesNotReadInputStream() throws Exception {
            final byte[] testData = "This data should not be read".getBytes();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

         * <li>Invalid crawl-delay values (non-numeric, negative)</li>
         * <li>Directives before any User-agent declaration (ignored)</li>
         * <li>Empty values for directives</li>
         * </ul>
         *
         * <p>Only fatal I/O errors will cause parsing to fail with an exception.</p>
         *
         * @param stream the input stream to parse
         * @param charsetName the character encoding to use
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 12:52:01 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

            if (dgst != null && !isAsync() && (getConfig().isRequireSecureNegotiate() || getErrorCode() == NtStatus.NT_STATUS_SUCCESS)) {
                // MID checking not required here as we only read responses for which we're waiting
                // We only read what we were waiting for, so first guess would be no.
                final boolean verify = dgst.verify(buffer, i, size, 0, this);
                this.verifyFailed = verify;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 8.1K bytes
    - Viewed (0)
Back to top