Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for testRotate (1.56 sec)

  1. guava-tests/test/com/google/common/primitives/FloatsTest.java

      }
    
      public void testRotate() {
        testRotate(new float[] {}, -1, new float[] {});
        testRotate(new float[] {}, 0, new float[] {});
        testRotate(new float[] {}, 1, new float[] {});
    
        testRotate(new float[] {1}, -2, new float[] {1});
        testRotate(new float[] {1}, -1, new float[] {1});
        testRotate(new float[] {1}, 0, new float[] {1});
        testRotate(new float[] {1}, 1, new float[] {1});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/LeaseV1CreateContextRequestTest.java

        private Smb2LeaseKey testKey;
        private int testState;
    
        @BeforeEach
        void setUp() {
            byte[] keyBytes = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10 };
            testKey = new Smb2LeaseKey(keyBytes);
            testState = Smb2LeaseState.SMB2_LEASE_READ_WRITE;
            leaseContext = new LeaseV1CreateContextRequest(testKey, testState);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 00:16:17 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top