- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 211 for getDns (0.31 seconds)
-
okhttp/api/jvm/okhttp.api
public abstract fun getCertificatePinner ()Lokhttp3/CertificatePinner; public abstract fun getConnectionPool ()Lokhttp3/ConnectionPool; public abstract fun getCookieJar ()Lokhttp3/CookieJar; public abstract fun getDns ()Lokhttp3/Dns; public abstract fun getEventListener ()Lokhttp3/EventListener; public abstract fun getFollowRedirects ()Z public abstract fun getFollowSslRedirects ()Z
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 10 21:47:20 GMT 2026 - 72.3K bytes - Click Count (0) -
okhttp/api/android/okhttp.api
public abstract fun getCertificatePinner ()Lokhttp3/CertificatePinner; public abstract fun getConnectionPool ()Lokhttp3/ConnectionPool; public abstract fun getCookieJar ()Lokhttp3/CookieJar; public abstract fun getDns ()Lokhttp3/Dns; public abstract fun getEventListener ()Lokhttp3/EventListener; public abstract fun getFollowRedirects ()Z public abstract fun getFollowSslRedirects ()Z
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 10 21:47:20 GMT 2026 - 72.3K bytes - Click Count (0) -
src/test/java/jcifs/ConfigTest.java
assertEquals(123, Config.getInt(testProperties, "test.int", 0)); assertEquals(456, Config.getInt(testProperties, "nonexistent.int", 456)); assertEquals(789, Config.getInt(testProperties, "test.invalid.int", 789)); } @Test @DisplayName("Should get integer property") void testGetInt() { assertEquals(123, Config.getInt(testProperties, "test.int"));
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 3.6K bytes - Click Count (0) -
src/test/java/jcifs/context/BaseContextTest.java
} @Test @DisplayName("getDfs should return initialized DFS resolver") void testGetDfs() { // When DfsResolver dfs = context.getDfs(); // Then assertNotNull(dfs, "DFS resolver should not be null"); assertSame(dfs, context.getDfs(), "Should return same instance on multiple calls"); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 15.1K bytes - Click Count (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
* * @param key the environment variable key * @return the environment variable value, or null if not found */ public static String getEnv(String key) { return System.getenv(key); } /** * Returns the system environment variable value for the specified key, or the default value if not found. * * @param key the environment variable keyCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Feb 12 12:10:45 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/oauth2-jwt.md
# OAuth2 avec mot de passe (et hachage), Bearer avec des jetons JWT { #oauth2-with-password-and-hashing-bearer-with-jwt-tokens } Maintenant que nous avons tout le flux de sécurité, rendons réellement l'application sécurisée, en utilisant des jetons <abbr title="JSON Web Tokens">JWT</abbr> et un hachage de mot de passe sécurisé. Ce code est utilisable dans votre application, enregistrez les hachages de mots de passe dans votre base de données, etc.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java
assertEquals("seg" + (i + 1), kuromojiItem.getSegmentation()); assertEquals("reading" + (i + 1), kuromojiItem.getReading()); assertEquals("pos" + (i + 1), kuromojiItem.getPos()); assertFalse(kuromojiItem.isUpdated()); assertFalse(kuromojiItem.isUpdated()); } } /* // TODO @Test public void test_insert() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 7.4K bytes - Click Count (0) -
tests/tests_test.go
log.Printf("failed to ping sqlDB, got error %v", err) os.Exit(1) } RunMigrations() } } func OpenTestConnection(cfg *gorm.Config) (db *gorm.DB, err error) { dbDSN := os.Getenv("GORM_DSN") switch os.Getenv("GORM_DIALECT") { case "mysql": log.Println("testing mysql...") if dbDSN == "" { dbDSN = mysqlDSN } db, err = gorm.Open(mysql.Open(dbDSN), cfg) case "postgres":
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Mon Jul 21 02:46:58 GMT 2025 - 3.7K bytes - Click Count (0) -
src/test/java/jcifs/context/CIFSContextWrapperTest.java
} @Test void testGetDfs() { // Test getDfs() method DfsResolver mockDfsResolver = mock(DfsResolver.class); when(mockDelegate.getDfs()).thenReturn(mockDfsResolver); assertEquals(mockDfsResolver, cifsContextWrapper.getDfs()); verify(mockDelegate).getDfs(); } @Test void testGetCredentials() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.7K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponseTest.java
assertEquals(Trans2QueryPathInformationResponse.SMB_QUERY_FILE_BASIC_INFO, infoLevel.getInt(resp)); // Verify subCommand is set correctly Field subCmd = SmbComTransactionResponse.class.getDeclaredField("subCommand"); subCmd.setAccessible(true); assertEquals(SmbComTransaction.TRANS2_QUERY_PATH_INFORMATION, subCmd.getInt(resp)); } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0)