Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 308 for per (0.01 sec)

  1. guava/src/com/google/common/collect/ForwardingMultimap.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * A multimap which forwards all its method calls to another multimap. Subclasses should override
     * one or more methods to modify the behavior of the backing multimap as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 21:10:54 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java

            response.wordCount = 10; // Must be non-zero to read
            int bytesRead = response.readParameterWordsWireFormat(buffer, 0);
    
            // Should read 20 bytes as per implementation
            assertEquals(20, bytesRead);
            assertEquals(0x0010, response.getAttributes());
            // getLastWriteTime returns lastWriteTime (from readUTime) + serverTimeZoneOffset
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java

            assertEquals(0, pipe.maxParameterCount);
            assertEquals(0, pipe.maxDataCount);
    
            // Max setup count should be 0
            assertEquals(0, pipe.maxSetupCount);
    
            // Setup count should be 2 (as per actual implementation)
            assertEquals(2, pipe.setupCount);
        }
    
        @Test
        public void testWriteSetupWireFormat() {
            // Test the writeSetupWireFormat method
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         *
         * @return whether multi-channel is enabled
         */
        boolean isUseMultiChannel();
    
        /**
         * Maximum number of channels per session
         *
         * Property {@code jcifs.smb.client.maxChannels} (int, default 4)
         *
         * @return maximum channels per session
         */
        int getMaxChannels();
    
        /**
         * Channel binding policy
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

        /** Whether a next page exists. */
        private boolean existNextPage;
    
        /** The list of page numbers for pagination display. */
        private List<Integer> pageNumberList;
    
        /** The number of items to display per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The dictionary ID */
        public String id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

        @Size(max = 1000)
        public String q;
    
        /**
         * The sort parameter for search results.
         */
        @Size(max = 1000)
        public String sort;
    
        /**
         * The number of search results to return per page.
         */
        @ValidateTypeFailure
        public Integer num;
    
        /**
         * Array of language codes to filter search results.
         */
        public String[] lang;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ForwardingBlockingDeque.java

    /**
     * A {@link BlockingDeque} which forwards all its method calls to another {@code BlockingDeque}.
     * Subclasses should override one or more methods to modify the behavior of the backing deque as
     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingBlockingDeque} forward <b>indiscriminately</b>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java

      private static final String NONALPHA = "0123456789`~-_=+[]{}|;:',.<>/?!@#$%^&*()\"\\";
    
      @Param({"20", "2000"})
      int size;
    
      @Param({"2", "20"})
      int nonAlphaRatio; // one non-alpha char per this many chars
    
      @Param boolean noWorkToDo;
    
      Random random;
      String testString;
    
      @BeforeExperiment
      void setUp() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java

         */
        public static final String CONTEXT_NAME = "DH2Q";
    
        private static final byte[] CONTEXT_NAME_BYTES = CONTEXT_NAME.getBytes();
        private static final int STRUCTURE_SIZE = 32; // Corrected to 32 bytes as per MS-SMB2
    
        // MS-SMB2: Timeout is specified in 100-nanosecond intervals, but we store in milliseconds
        private long timeoutMs; // timeout in milliseconds (for application use)
        private int flags;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.rdma;
    
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB Direct Negotiate Request message.
     *
     * As per MS-SMBD 2.2.1 - SMB_DIRECT_NEGOTIATE_REQUEST
     * This message is sent to negotiate SMB Direct protocol parameters.
     */
    public class SmbDirectNegotiateRequest {
    
        // Protocol constants
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.4K bytes
    - Viewed (0)
Back to top