Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for 1250 (0.02 sec)

  1. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

          }
        }.test();
      }
    
      public void testUnknownOrderUnrecognizedElement() {
        IteratorTester<Integer> tester =
            new IteratorTester<Integer>(
                3, MODIFIABLE, newArrayList(1, 2, 50), IteratorTester.KnownOrder.UNKNOWN_ORDER) {
              @Override
              protected Iterator<Integer> newTargetIterator() {
                return newArrayList(2, 1, 3).iterator();
              }
            };
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

          }
        }.test();
      }
    
      public void testUnknownOrderUnrecognizedElement() {
        IteratorTester<Integer> tester =
            new IteratorTester<Integer>(
                3, MODIFIABLE, newArrayList(1, 2, 50), IteratorTester.KnownOrder.UNKNOWN_ORDER) {
              @Override
              protected Iterator<Integer> newTargetIterator() {
                return newArrayList(2, 1, 3).iterator();
              }
            };
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. docs/en/data/topic_repos.yml

      stars: 1259
      owner_login: jonra1993
      owner_html_url: https://github.com/jonra1993
    - name: fastapi-scaff
      html_url: https://github.com/atpuxiner/fastapi-scaff
      stars: 1255
      owner_login: atpuxiner
      owner_html_url: https://github.com/atpuxiner
    - name: bedrock-chat
      html_url: https://github.com/aws-samples/bedrock-chat
      stars: 1254
      owner_login: aws-samples
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 01 13:17:29 UTC 2025
    - 16K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java

            querySecurityDesc = new NtTransQuerySecurityDesc(mockConfig, 0x1234, OWNER_SECURITY_INFORMATION);
            byte[] buffer = new byte[100];
    
            int result = querySecurityDesc.readSetupWireFormat(buffer, 10, 50);
    
            assertEquals(0, result);
        }
    
        @Test
        @DisplayName("Test readParametersWireFormat returns zero")
        void testReadParametersWireFormat() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

            notifyChange = new NtTransNotifyChange(mockConfig, 0x1234, FILE_NOTIFY_CHANGE_FILE_NAME, false);
            byte[] buffer = new byte[100];
    
            int result = notifyChange.readSetupWireFormat(buffer, 10, 50);
    
            assertEquals(0, result);
        }
    
        @Test
        @DisplayName("Test readParametersWireFormat returns zero")
        void testReadParametersWireFormat() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java

            SMBUtil.writeInt4(10, buffer, notifyOffset + 8); // FileNameLength
            System.arraycopy("file1".getBytes("UnicodeLittleUnmarked"), 0, buffer, notifyOffset + 12, 10);
    
            // Second notification at offset 120 (80 + 40)
            notifyOffset = 120;
            SMBUtil.writeInt4(44, buffer, notifyOffset); // NextEntryOffset
            SMBUtil.writeInt4(2, buffer, notifyOffset + 4); // Action (REMOVED)
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("16/50 kB", format.formatProgress(16000L, 50000L));
            assertEquals("50 kB", format.formatProgress(50000L, 50000L));
    
            assertEquals("0/5.0 MB", format.formatProgress(0L, 5000000L));
            assertEquals("0.5/5.0 MB", format.formatProgress(500000L, 5000000L));
            assertEquals("1.0/5.0 MB", format.formatProgress(1000000L, 5000000L));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

                byte[] buf = new byte[100];
                when(mockSmbPipeHandleInternal.isStale()).thenReturn(false);
    
                handle.doSendFragment(buf, 10, 50);
                verify(mockSmbPipeHandleInternal).send(buf, 10, 50);
            }
    
            @Test
            @DisplayName("Should throw IOException when handle is stale")
            void testDoSendFragment_StaleHandle() throws Exception {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/AllocInfoTest.java

                // When
                int result = mockAllocInfo.decode(buffer, 10, 50);
    
                // Then
                assertEquals(42, result);
                verify(mockAllocInfo, times(1)).decode(buffer, 10, 50);
            }
    
            @Test
            @DisplayName("Should handle decode method throwing exception")
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  10. impl/maven-cli/src/test/java/org/apache/maven/cling/transfer/FileSizeFormatTest.java

                    Arguments.of(16000L, 50000L, "16/50 kB"),
                    Arguments.of(50000L, 50000L, "50 kB"),
    
                    // Megabytes tests
                    Arguments.of(0L, 5000000L, "0/5.0 MB"),
                    Arguments.of(500000L, 5000000L, "0.5/5.0 MB"),
                    Arguments.of(1000000L, 5000000L, "1.0/5.0 MB"),
                    Arguments.of(5000000L, 5000000L, "5.0 MB"),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top