Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for 44 (0.01 sec)

  1. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

                assertEquals(1024, SMBUtil.readInt4(buffer, 40)); // Remaining bytes
    
                // ReadChannelInfo
                assertEquals(0, SMBUtil.readInt2(buffer, 44)); // ReadChannelInfoOffset
                assertEquals(0, SMBUtil.readInt2(buffer, 46)); // ReadChannelInfoLength
    
                // Buffer byte
                assertEquals(0, buffer[48]); // One byte in buffer must be zero
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

            "R0.76", // #4, this is what the throttling would be with the old rate
            "R0.20, R0.10, R0.10, R0.10", // #5
            "U4.10", // #6
            "R0.00, R0.94, R0.81, R0.69, R0.57, R0.44, R0.32", // #7
            "R0.20, R0.10, R0.10, R0.10"); // #7 (cont.), note, this matches #5
      }
    
      public void testBurstyAndUpdate() {
        RateLimiter rateLimiter = RateLimiter.create(1.0, stopwatch);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

            "R0.76", // #4, this is what the throttling would be with the old rate
            "R0.20, R0.10, R0.10, R0.10", // #5
            "U4.10", // #6
            "R0.00, R0.94, R0.81, R0.69, R0.57, R0.44, R0.32", // #7
            "R0.20, R0.10, R0.10, R0.10"); // #7 (cont.), note, this matches #5
      }
    
      public void testBurstyAndUpdate() {
        RateLimiter rateLimiter = RateLimiter.create(1.0, stopwatch);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/graph/GraphsTest.java

      private static final String E21 = "2-1";
      private static final String E13 = "1-3";
      private static final String E31 = "3-1";
      private static final String E34 = "3-4";
      private static final String E44 = "4-4";
      private static final int NODE_COUNT = 20;
      private static final int EDGE_COUNT = 20;
      // TODO(user): Consider adding both error messages from here and {@link AbstractNetworkTest}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

                    assertEquals(100, list.getPageSize());
                    assertEquals(1000, list.getStart());
                    assertEquals("955", list.get(0).get(ID_FIELD));
                    assertEquals("999", list.get(44).get(ID_FIELD));
                } else {
                    fail();
                }
            }
        }
    
        public void test_1searcher0_0docs_100size() throws Exception {
            String query = "*";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  6. docs/smb3-features/04-directory-leasing-design.md

                public boolean isDirectory() { return fileInfo.isDirectory(); }
                // ... other attribute methods
            });
            
            return file;
        }
    }
    ```
    
    ### 4.4 Directory Change Notifier
    ```java
    package jcifs.internal.smb2.lease;
    
    import jcifs.internal.smb2.ServerMessageBlock2;
    import java.util.concurrent.ConcurrentHashMap;
    
    public class DirectoryChangeNotifier {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  7. docs/smb3-features/05-rdma-smb-direct-design.md

        }
        
        public RdmaProvider getProvider() {
            return provider;
        }
        
        public RdmaConnection getConnection() {
            return rdmaConnection;
        }
    }
    ```
    
    ### 4.4 RDMA Buffer Manager
    ```java
    package jcifs.internal.smb2.rdma;
    
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.atomic.AtomicLong;
    
    public class RdmaBufferManager {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

            SMBUtil.writeInt8(500000, buffer, 28); // Caller available units
            SMBUtil.writeInt8(600000, buffer, 36); // Actual available units
            SMBUtil.writeInt4(512, buffer, 44); // Sectors per unit
            SMBUtil.writeInt4(4096, buffer, 48); // Bytes per sector
    
            int result = response.readBytesWireFormat(buffer, bufferIndex);
    
            assertNotNull(response.getInfo());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

       * <p><b>Note:</b> {@code a.asSet(d).equals(b.asSet(d))} does not imply {@code a.equals(b)}! For
       * example, {@code a} and {@code b} could be {@code [2..4]} and {@code (1..5)}, or the empty
       * ranges {@code [3..3)} and {@code [4..4)}.
       *
       * <p><b>Warning:</b> Be extremely careful what you do with the {@code asSet} view of a large
       * range set (such as {@code ImmutableRangeSet.of(Range.greaterThan(0))}). Certain operations on
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27.4K bytes
    - Viewed (0)
  10. docs/smb3-features/02-persistent-handles-design.md

            writeInt8(buffer, dataOffset + 12, 0);  // Reserved
            System.arraycopy(createGuid.toBytes(), 0, buffer, dataOffset + 20, 16);  // CreateGuid
        }
    }
    ```
    
    ### 4.4 Durable Handle Reconnect Context
    ```java
    package jcifs.internal.smb2.persistent;
    
    public class DurableHandleReconnect extends Smb2CreateContext {
        public static final String NAME = "DHnC";  // Durable Handle Reconnect
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
Back to top