Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,421 for Results (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java

        /**
         * Protocol overhead size for SMB2 query directory response
         */
        public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 8;
    
        private final byte expectInfoClass;
        private FileEntry[] results;
    
        /**
         * Constructs a SMB2 query directory response with the specified configuration and expected information class
         *
         * @param config
         *            the configuration to use for this response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_en.properties

    labels.footer.copyright=&copy;2024 <a href="https://github.com/codelibs">CodeLibs Project</a>.
    labels.search=Search
    labels.similar_doc_result_status=Showing similar results.
    labels.search_result_status=Results <b>{2}</b> - <b>{3}</b> of <b>{1}</b> for <b>{0}</b>
    labels.search_result_status_over=Results <b>{2}</b> - <b>{3}</b> of over <b>{1}</b> for <b>{0}</b>
    labels.search_result_time=({0} seconds)
    labels.prev_page=Prev
    labels.next_page=Next
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
        /** The document paths to include in search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocPaths;
    
        /** The document paths to exclude from search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedDocPaths;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/DiscreteDomain.java

          checkNonnegative(distance, "distance");
          long result = origin + distance;
          if (result < 0) {
            checkArgument(origin < 0, "overflow");
          }
          return result;
        }
    
        @Override
        public long distance(Long start, Long end) {
          long result = end - start;
          if (end > start && result < 0) { // overflow
            return Long.MAX_VALUE;
          }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/witness/WitnessRpcClient.java

                // Send the RPC request
                rpcHandle.sendrecv(message);
    
                // Create response from RPC message results
                WitnessRegisterResponse response = new WitnessRegisterResponse();
                response.setReturnCode(message.getReturnCode());
    
                if (message.isSuccess()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

     * This form is used in the admin interface to upload bad word dictionary files
     * that contain words to be filtered from search results.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing bad words to be uploaded.
         * This file should contain a list of words that will be filtered from search results.
         */
        @Required
        public MultipartFormFile badWordFile;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java

            int testDialect = 0x0311;
            SMBUtil.writeInt2(testDialect, buffer, bufferIndex + 22);
    
            // Execute decode
            int bytesDecoded = response.decode(buffer, bufferIndex, 24);
    
            // Verify results
            assertEquals(24, bytesDecoded, "Should decode exactly 24 bytes");
            assertEquals(testCapabilities, response.getCapabilities(), "Capabilities should match");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/dtyp/ACETest.java

            String result = ace.toString();
    
            assertTrue(result.startsWith("Allow "));
            // Hexdump.toHexString produces uppercase hex
            assertTrue(result.toLowerCase().contains("0x001200a9"));
            // ACE.toString() outputs "Direct    " with 4 spaces
            assertTrue(result.contains("Direct"));
            assertTrue(result.contains("This folder only"));
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/EmptyIteratorTest.java

                            if (hasNext || next != null) {
                                results[index] = false; // Mark as failed if unexpected result
                                return;
                            }
                        }
                        results[index] = true; // Mark as successful
                    });
                    threads[i].start();
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. docs/smb3-features/04-directory-leasing-design.md

                            if (file.exists()) {
                                results.add(file);
                            }
                        } catch (IOException e) {
                            log.debug("Error checking existence of: " + path, e);
                        }
                    }
                }
            }
            
            return results;
        }
    }
    ```
    
    ### 7.2 Hierarchical Cache Management
    ```java
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top