Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 208 for DOC (0.02 sec)

  1. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequestTest.java

        void testWildcardPatterns() {
            request = new Smb2QueryDirectoryRequest(mockConfig);
    
            // Test various wildcard patterns
            String[] patterns = { "*", "*.txt", "test*.*", "?test?.doc" };
    
            for (String pattern : patterns) {
                request.setFileName(pattern);
    
                byte[] buffer = new byte[1024];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/com/SmbComRenameTest.java

        public void testWriteBytesWireFormatSpecialCharacters() {
            // Given
            String oldFileName = "file with spaces.txt";
            String newFileName = "file@#$%.doc";
            byte[] dst = new byte[200];
            smbComRename = new SmbComRename(config, oldFileName, newFileName);
            int dstIndex = 0;
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    errors.result_size_exceeded = No more results can be displayed.
    errors.target_file_does_not_exist = The file {0} does not exist.
    errors.failed_to_delete_file = Failed to delete the file {0}.
    errors.docid_not_found = Doc ID is not found. Cause: {0}
    errors.document_not_found = The URL for the document ID is not found. Cause: {0}
    errors.not_load_from_server = Could not load from this server. Cause: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_en.properties

    errors.result_size_exceeded = No more results can be displayed.
    errors.target_file_does_not_exist = The file {0} does not exist.
    errors.failed_to_delete_file = Failed to delete the file {0}.
    errors.docid_not_found = Doc ID is not found. Cause: {0}
    errors.document_not_found = The URL for the document ID is not found. Cause: {0}
    errors.not_load_from_server = Could not load from this server. Cause: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java

    import java.util.stream.Collector;
    import jsinterop.annotations.JsMethod;
    import org.jspecify.annotations.Nullable;
    
    /**
     * GWT emulated version of {@link com.google.common.collect.ImmutableList}. TODO(cpovirk): more doc
     *
     * @author Hayward Chan
     */
    @SuppressWarnings("serial") // we're overriding default serialization
    public abstract class ImmutableList<E> extends ImmutableCollection<E>
        implements List<E>, RandomAccess {
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Hashing.java

       *
       * <p>If you are designing a new system that needs HMAC, prefer {@link #hmacSha256} or other
       * future-proof algorithms <a
       * href="https://datatracker.ietf.org/doc/html/rfc6151#section-2.3">over {@code hmacMd5}</a>.
       *
       * @param key the secret key
       * @throws IllegalArgumentException if the given key is inappropriate for initializing this MAC
       * @since 20.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:06:57 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  7. docs/config/README.md

    Each node is responsible of healing its local drives; Each drive will have multiple heal workers which is the quarter of the number of CPU cores of the node or the quarter of the configured nr_requests of the drive (https://www.kernel.org/doc/Documentation/block/queue-sysfs.txt). It is also possible to provide a custom number of workers by using this command: `mc admin config set alias/ heal drive_workers=100` .
    
    
    ```
    ~ mc admin config set alias/ heal
    KEY:
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.1K bytes
    - Viewed (1)
  8. src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java

        void testGetFilename() throws SMBProtocolDecodingException {
            // Prepare test data
            String expectedFilename = "longfilename.docx";
            byte[] buffer = createValidBuffer(expectedFilename, "LONGFI~1.DOC", true);
    
            // Decode
            fileBothDirectoryInfo.decode(buffer, 0, buffer.length);
    
            // Verify
            assertEquals(expectedFilename, fileBothDirectoryInfo.getFilename());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            for (final Map<String, Object> doc : docList) {
                final Object id = doc.remove(fessConfig.getIndexFieldId());
                final IndexRequestBuilder builder = client.prepareIndex().setIndex(index).setId(id.toString()).setSource(new DocMap(doc));
                options.accept(doc, builder);
                bulkRequestBuilder.add(builder);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            // Test with multiple conditions
            testParams.conditions.put(SearchRequestParams.AS_Q, new String[] { "search term" });
            testParams.conditions.put(SearchRequestParams.AS_FILETYPE, new String[] { "doc" });
            testParams.conditions.put(SearchRequestParams.AS_NQ, new String[] { "exclude" });
            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
        public void test_hasConditionQuery_withNoConditions() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
Back to top