- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 379 for setLink (0.07 sec)
-
cmd/admin-handlers_test.go
// single node setup, this degenerates to a simple function // call under the hood. globalMinioAddr = "127.0.0.1:9000" var wg sync.WaitGroup // Setting up a go routine to simulate ServerRouter's // handleServiceSignals for stop and restart commands. if cmd == restartCmd { wg.Add(1) go func() { defer wg.Done() testServiceSignalReceiver(cmd, t) }()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java
// Use reflection to set dataCount Field dataCountField = SmbComTransactionResponse.class.getDeclaredField("dataCount"); dataCountField.setAccessible(true); dataCountField.setInt(response, 42); assertEquals(42, response.getResponseLength()); } @Test void testGetResponseLengthWithZeroDataCount() { assertEquals(0, response.getResponseLength()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
// Log warning for insecure NTLMv1 usage if (compatibility < 3) { log.warn("Using insecure NTLMv1 authentication (LM compatibility level {}). " + "Please upgrade to NTLMv2 by setting jcifs.smb.lmCompatibility to 3 or higher.", compatibility); } switch (compatibility) { case 0: case 1: // NTLMv1 - deprecated and insecure
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
// Test full flow of create and purge SuggestCreator.Options options = new SuggestCreator.Options(); assertNotNull(options); } // Test system property setting public void test_systemPropertySetting() { // Test system property configuration String originalValue = System.getProperty(FesenClient.HTTP_ADDRESS); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.wizard_start_title=Easy Setup labels.wizard_start_desc=You can create a crawl setting easily by using Configuration Wizard. labels.wizard_start_button=Start Setup labels.wizard_button_cancel=Cancel labels.wizard_crawling_config_title=Crawl Config labels.wizard_crawling_setting_title=Crawl Setting labels.wizard_crawling_config_name=Name labels.wizard_crawling_config_path=Crawl Path
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
} } else { sambaContainer = null; } } @BeforeAll void setupContainer() throws Exception { log.info("Setting up Samba container for SMB integration tests"); // Check if Docker is available assumeTrue(isDockerAvailable(), "Docker is not available - skipping integration tests");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.5.md
* Fix fetching pids running in a cgroup, which caused problems with OOM score adjustments & setting the /system cgroup ("misc" in the summary API). ([#36551](https://github.com/kubernetes/kubernetes/pull/36551), [@timstclair](https://github.com/timstclair))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 136.4K bytes - Viewed (0) -
configure.py
if check_success(val): break if not suppress_default_error: print(error_msg % val) environ_cp[var_name] = '' else: raise UserInputError('Invalid %s setting was provided %d times in a row. ' 'Assuming to be a scripting mistake.' % (var_name, n_ask_attempts)) if resolve_symlinks: val = os.path.realpath(val)
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Apr 30 15:18:54 UTC 2025 - 48.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
} private void setConverter(NetServerEnum2Response response, int value) throws Exception { Field field = response.getClass().getDeclaredField("converter"); field.setAccessible(true); field.setInt(response, value); } private int getNumEntries(NetServerEnum2Response response) throws Exception { Method method = getSuperclassMethod(response.getClass(), "getNumEntries");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
* [Adam Langley's Weblog][langley]. Pins are either base64 SHA-256 hashes as in * [HTTP Public Key Pinning (HPKP)][rfc_7469] or SHA-1 base64 hashes as in Chromium's * [static certificates][static_certificates]. * * ## Setting up Certificate Pinning * * The easiest way to pin a host is turn on pinning with a broken configuration and read the * expected configuration when the connection fails. Be sure to do this on a trusted network, and
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K bytes - Viewed (0)