- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for testConfigs (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/erasure-coding.go
func erasureSelfTest() { // Approx runtime ~1ms var testConfigs [][2]uint8 for total := uint8(4); total < 16; total++ { for data := total / 2; data < total; data++ { parity := total - data testConfigs = append(testConfigs, [2]uint8{data, parity}) } } got := make(map[[2]uint8]map[ErasureAlgo]uint64, len(testConfigs)) // Copied from output of fmt.Printf("%#v", got) at the end.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 8.5K bytes - Click Count (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.useNTSmbs = true; testConfig.useNtStatus = true; testConfig.useExtendedSecurity = true; testConfig.useLargeReadWrite = true; testConfig.useUnicode = true; testConfig.initDefaults(); assertTrue((testConfig.getCapabilities() & SmbConstants.CAP_NT_SMBS) != 0);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java
void testConfigurationHandling() { // Given - create a mock configuration Configuration testConfig = mock(Configuration.class); // When Smb2FlushResponse newResponse = new Smb2FlushResponse(testConfig); // Then assertNotNull(newResponse); // Verify the response was created successfully with the configuration
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
@DisplayName("Verify Configuration is passed to parent") void testConfigurationPassedToParent() { // Arrange Configuration testConfig = mock(Configuration.class); // Act TransWaitNamedPipeResponse testResponse = new TransWaitNamedPipeResponse(testConfig); // Assert assertNotNull(testResponse); } @TestCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java
@DisplayName("Verify Configuration is passed to parent") void testConfigurationPassedToParent() { // Arrange Configuration testConfig = mock(Configuration.class); // Act TransPeekNamedPipeResponse testResponse = new TransPeekNamedPipeResponse(testConfig); // Assert assertNotNull(testResponse); } @TestCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (0)