Search Options

Results per page
Sort
Preferred Languages
Advance

Results 701 - 710 of 1,226 for inte (2.57 sec)

  1. src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java

        }
    
        @Override
        int writeTrailerWireFormat(final byte[] dst, int dstIndex) {
            final int start = dstIndex;
            dstIndex += calledName.writeWireFormat(dst, dstIndex);
            dstIndex += callingName.writeWireFormat(dst, dstIndex);
            return dstIndex - start;
        }
    
        @Override
        int readTrailerWireFormat(final InputStream in, final byte[] buffer, int bufferIndex) throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/persistent/DurableHandleRequest.java

            return 16 + 4 + 4 + STRUCTURE_SIZE;
        }
    
        @Override
        public int encode(byte[] dst, int dstIndex) {
            int start = dstIndex;
    
            // Write context header
            SMBUtil.writeInt4(0, dst, dstIndex); // Next (offset to next context, 0 for last)
            dstIndex += 4;
    
            SMBUtil.writeInt2(16, dst, dstIndex); // NameOffset (from start of context)
            dstIndex += 2;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ClassUtil.java

            assertArgumentNotEmpty("className", className);
    
            final int i = className.lastIndexOf('.');
            if (i > 0) {
                return className.substring(i + 1);
            }
            return className;
        }
    
        /**
         * Splits a fully qualified class name (FQCN) into the package name and the class name without the package.
         *
         * @param className
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/com/ServerDataTest.java

            assertEquals(int.class, ServerData.class.getDeclaredField("sflags2").getType());
            assertEquals(int.class, ServerData.class.getDeclaredField("smaxMpxCount").getType());
            assertEquals(int.class, ServerData.class.getDeclaredField("maxBufferSize").getType());
            assertEquals(int.class, ServerData.class.getDeclaredField("sessKey").getType());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

        }
    
        /**
         * Lease entry containing lease state information
         */
        public static class LeaseEntry {
            private final Smb2LeaseKey leaseKey;
            private volatile int leaseState;
            private volatile int epoch;
            private final long createTime;
            private volatile long lastAccessTime;
            private final String path;
            private volatile boolean breaking;
    
            /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/list.md

    | `minio_heal_time_last_activity_nano_seconds` | Time elapsed (in nano seconds) since last self healing activity. |
    
    ## Inter Node Metrics
    
    | Name                                      | Description                                             |
    |:------------------------------------------|:--------------------------------------------------------|
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java

            return 16 + 4 + 4 + STRUCTURE_SIZE;
        }
    
        @Override
        public int encode(byte[] dst, int dstIndex) {
            int start = dstIndex;
    
            // Write context header
            SMBUtil.writeInt4(0, dst, dstIndex); // Next (offset to next context, 0 for last)
            dstIndex += 4;
    
            SMBUtil.writeInt2(16, dst, dstIndex); // NameOffset (from start of context)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java

        private final AtomicLong totalAllocated;
        private final AtomicLong totalReleased;
    
        // Buffer pool configuration
        private final int initialSendBuffers = 32;
        private final int initialReceiveBuffers = 64;
        private final int sendBufferSize = 65536; // 64KB
        private final int receiveBufferSize = 65536; // 64KB
    
        /**
         * Create new RDMA buffer manager
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/DcerpcHandleTest.java

            protected void doSendFragment(byte[] buf, int off, int length) throws IOException {
                // Mock implementation for testing
            }
    
            @Override
            protected int doReceiveFragment(byte[] buf) throws IOException {
                return doReceiveFragmentReturn;
            }
    
            @Override
            protected int doSendReceiveFragment(byte[] out, int off, int length, byte[] inB) throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            // When
            int sendBufferSize = delegatingConfig.getSendBufferSize();
            int receiveBufferSize = delegatingConfig.getReceiveBufferSize();
            int maximumBufferSize = delegatingConfig.getMaximumBufferSize();
            int transactionBufferSize = delegatingConfig.getTransactionBufferSize();
            int bufferCacheSize = delegatingConfig.getBufferCacheSize();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
Back to top