- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 499 for varios (0.3 sec)
-
src/test/java/org/codelibs/curl/CurlTest.java
assertEquals(Method.CONNECT, Curl.connect("http://test.com").method()); } @Test public void test_FactoryMethodsWithDifferentUrls() { // ## Test factory methods with various URL formats ## // ## Act & Assert ## assertNotNull(Curl.get("https://secure.example.com/path?param=value")); assertNotNull(Curl.post("http://api.example.com/v1/resource"));
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0) -
docs/sts/assume-role.md
## API Request Parameters ### Version
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.2K bytes - Viewed (0) -
docs/erasure/storage-class/README.md
## Storage usage The selection of varying data and parity drives has a direct impact on the drive space usage. With storage class, you can optimize for high redundancy or better drive space utilization. To get an idea of how various combinations of data and parity drives affect the storage usage, let’s take an example of a 100 MiB file stored
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java
assertNotNull(fileFsFullSizeInfo.getCapacity()); assertNotNull(fileFsFullSizeInfo.getFree()); } @ParameterizedTest @DisplayName("Should decode various sector and allocation configurations") @CsvSource({ "1000, 500, 600, 1, 512", // Minimal sectors per alloc "1000, 500, 600, 8, 512", // Typical configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
testConfig.nativeOs = "CustomOS"; testConfig.initDefaults(); assertEquals("CustomOS", testConfig.getNativeOs()); } @Test @DisplayName("Test initDefaults with various flag combinations") void testInitDefaultsWithFlagCombinations() throws CIFSException { BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.useExtendedSecurity = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionServicePacketTest.java
assertEquals((byte) 0x12, dst[0]); assertEquals((byte) 0x34, dst[1]); } @ParameterizedTest @ValueSource(ints = { 0, 1, 255, 256, 32767, 65535 }) @DisplayName("writeInt2 should handle various values") void testWriteInt2Various(int value) { byte[] dst = new byte[4]; SessionServicePacket.writeInt2(value, dst, 0); assertEquals((byte) ((value >> 8) & 0xFF), dst[0]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
// When SrvCopychunkCopy copy = new SrvCopychunkCopy(sourceKey); // Then assertNotNull(copy); } @Test @DisplayName("Should accept various source key patterns") void testConstructorWithVariousSourceKeys() { // Given byte[] zeroKey = new byte[SOURCE_KEY_SIZE]; byte[] maxKey = new byte[SOURCE_KEY_SIZE];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
assertNotSame(retrieved1, retrieved2); } // Test register method with case insensitive name public void test_register_caseInsensitive() { testScriptEngine.register(); // Test various case combinations ScriptEngine lowerCase = scriptEngineFactory.getScriptEngine("testengine"); ScriptEngine upperCase = scriptEngineFactory.getScriptEngine("TESTENGINE");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
/** * Entity class representing facet configuration information for search results. * This class holds configuration settings for faceted search including field facets, * query facets, and various parameters that control facet behavior. */ public class FacetInfo { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FacetInfo.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtExceptionTest.java
assertTrue(exception instanceof CIFSException, "NbtException should be an instance of CIFSException"); } /** * Test the getErrorString method with various error classes and codes to ensure all branches are covered. */ @ParameterizedTest @MethodSource("provideErrorClassAndCodeForGetErrorString")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0)