Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 390 for maksimum (0.09 sec)

  1. src/main/config/openapi/openapi-user.yaml

              description: The number of returned documents as a search result
              required: false
              schema:
                type: integer
                minimum: 0
                exclusiveMinimum: false
                maximum: 100
                exclusiveMaximum: false
                default: 20
                example: 20
            - name: sort
              in: query
              description: Sorted field name
              required: false
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/ASN1Util.java

        /**
         * Read a tagged object without parsing it's contents
         *
         * BC no longer seems to allow that out of the box
         *
         * @param expectTag the expected tag number
         * @param limit the maximum length limit
         * @param in the ASN.1 input stream
         * @return coded bytes of the tagged object
         * @throws IOException if reading fails or tag mismatch
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/rpc.java

                // Default constructor
            }
    
            /**
             * The actual length of the string in bytes.
             */
            public short length;
            /**
             * The maximum allocated length of the string in bytes.
             */
            public short maximum_length;
            /**
             * The buffer containing the Unicode characters.
             */
            public short[] buffer;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeTest.java

            byte[] writtenData = Arrays.copyOfRange(dst, 0, largeData.length);
            assertArrayEquals(largeData, writtenData);
        }
    
        @Test
        @DisplayName("Test with maximum data size")
        void testWithMaxDataSize() {
            // Given
            byte[] maxData = new byte[0xFFFF];
            Arrays.fill(maxData, (byte) 0x55);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/info/Smb2SetInfoResponseTest.java

                assertEquals(2, result, "Should consistently return 2 on call " + (i + 1));
            }
        }
    
        @Test
        @DisplayName("Test edge case with maximum buffer index")
        void testReadBytesWireFormatMaxBufferIndex() throws SMBProtocolDecodingException {
            byte[] buffer = new byte[65536]; // Large buffer
            int bufferIndex = 65534; // Near the end
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

         * @param <T> the response type
         * @param request the request to send
         * @param response the response object to populate
         * @param params additional parameters for the request
         * @param timeout the maximum time to wait for the response in milliseconds
         * @return the key associated with the request
         * @throws IOException if an I/O error occurs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/TempFileCreator.java

          return File.createTempFile(
              /* prefix= */ prefix,
              /* suffix= */ null,
              /* directory= */ null /* defaults to java.io.tmpdir */);
        }
    
        /** Maximum loop count when creating temp directories. */
        private static final int TEMP_DIR_ATTEMPTS = 10000;
      }
    
      private static final class ThrowingCreator extends TempFileCreator {
        private static final String MESSAGE =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/io/Smb2WriteResponseTest.java

                assertEquals(count, response.getCount());
                assertEquals(remaining, response.getRemaining());
            }
    
            @Test
            @DisplayName("Should handle maximum integer values")
            void testMaximumValues() throws SMBProtocolDecodingException {
                byte[] buffer = createValidWriteResponse(Integer.MAX_VALUE, Integer.MAX_VALUE);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java

            int command = commandField.getInt(request);
    
            // Then
            assertEquals(0x000F, command); // SMB2_CHANGE_NOTIFY
        }
    
        @Test
        @DisplayName("Should handle maximum buffer size")
        void testMaximumBufferSize() {
            // Given
            Configuration config = mock(Configuration.class);
            when(config.getNotifyBufferSize()).thenReturn(Integer.MAX_VALUE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/ResourceManager.java

                }
            }
    
            return Collections.unmodifiableSet(result);
        }
    
        /**
         * Configure resource manager
         *
         * @param maxAge maximum resource age in milliseconds
         * @param cleanupInterval cleanup interval in milliseconds
         * @param enableLeakDetection enable leak detection
         * @param enableAutoCleanup enable auto cleanup
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top