Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 343 for readPing (0.12 sec)

  1. src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java

         *            the readLength to set
         */
        public void setReadLength(final int readLength) {
            this.readLength = readLength;
        }
    
        /**
         * Sets the file offset from which to start reading
         *
         * @param offset
         *            the offset to set
         */
        public void setOffset(final long offset) {
            this.offset = offset;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

         */
        public void setAnalyzer(final Analyzer analyzer) {
            this.analyzer = analyzer;
        }
    
        /**
         * Sets whether to allow leading wildcards in query terms.
         *
         * @param allowLeadingWildcard true to allow leading wildcards, false otherwise
         */
        public void setAllowLeadingWildcard(final boolean allowLeadingWildcard) {
            this.allowLeadingWildcard = allowLeadingWildcard;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

         * @throws CIFSException if an error occurs retrieving the session key
         */
        byte[] getSessionKey() throws CIFSException;
    
        /**
         * Gets the input stream for reading from this pipe.
         *
         * @return this pipe's input stream
         * @throws CIFSException if an error occurs getting the input stream
         */
        @Override
        SmbPipeInputStream getInput() throws CIFSException;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsElevateWordCB.java

                doColumn("createdTime");
            }
    
            public void columnPermissions() {
                doColumn("permissions");
            }
    
            public void columnReading() {
                doColumn("reading");
            }
    
            public void columnSuggestWord() {
                doColumn("suggestWord");
            }
    
            public void columnUpdatedBy() {
                doColumn("updatedBy");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. docs/features/caching.md

            urlIterator.remove()
          }
        }
    ```
    
    ### Troubleshooting
    
    1. Valid cacheable responses are not being cached
    
    Make sure you are reading responses fully as unless they are read fully, cancelled or stalled Responses will not be cached.
    
    ### Overriding normal cache behaviour
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java

    import jcifs.Configuration;
    
    /**
     * SMB1 transaction subcommand for calling a named pipe.
     *
     * This class implements the TRANS_CALL_NAMED_PIPE transaction which allows
     * writing data to and reading data from a named pipe in a single operation.
     */
    public class TransCallNamedPipe extends SmbComTransaction {
    
        private static final Logger log = LoggerFactory.getLogger(TransCallNamedPipe.class);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java

    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB1 transaction subcommand for transacting with a named pipe.
     *
     * This class implements the TRANS_TRANSACT_NAMED_PIPE transaction which
     * combines writing data to a pipe and reading the response in a single operation.
     * This is more efficient than separate write and read operations.
     */
    public class TransTransactNamedPipe extends SmbComTransaction {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

       *     the stack is in reverse order.
       * @param encoded The serialized trie.
       * @param start An index in the encoded serialized trie to begin reading characters from.
       * @param builder A map builder to which all entries will be added.
       * @return The number of characters consumed from {@code encoded}.
       */
      private static int doParseTrieToBuilder(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponseTest.java

            assertArrayEquals(secondData, secondResult);
        }
    
        @Test
        void testReadDataWireFormatWithOffset() throws SMBProtocolDecodingException {
            // Test reading data from different buffer offsets
            byte[] testData = "Test data with offset".getBytes();
            byte[] buffer = new byte[200];
            int offset = 50;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponseTest.java

                assertTrue(str.contains("allocationSize=4096"));
                assertTrue(str.contains("endOfFile=2048"));
            }
        }
    
        @Nested
        @DisplayName("Data Reading Tests")
        class DataReadingTests {
    
            @Test
            @DisplayName("Should read data for basic info level")
            void testReadDataBasicInfo() {
                Trans2QueryPathInformationResponse resp =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top