- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 40 for getDns (0.2 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) -
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/it/admin/CrawlerLogTests.java
assertEquals(1, JsonPath.from(response).getInt("response.status")); // Test PUT /api/admin/crawlinginfo/logs final Map<String, Object> putBody = new HashMap<>(); putBody.put("size", 10); response = checkMethodBase(putBody).put("/api/admin/crawlinginfo/logs").asString(); assertEquals(0, JsonPath.from(response).getInt("response.status"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:01:34 GMT 2026 - 13.4K bytes - Click Count (0) -
docs/fr/docs/environment-variables.md
Par exemple, vous pouvez avoir un fichier `main.py` contenant : ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip | Astuce Le deuxième argument de [`os.getenv()`](https://docs.python.org/3.8/library/os.html#os.getenv) est la valeur par défaut à retourner.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 9.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/simple-oauth2.md
/// ## Renvoyer le jeton { #return-the-token } La réponse de l'endpoint `token` doit être un objet JSON. Il doit contenir un `token_type`. Dans notre cas, comme nous utilisons des jetons « Bearer », le type de jeton doit être « bearer ». Et il doit contenir un `access_token`, avec une chaîne contenant notre jeton d'accès.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 11.2K bytes - Click Count (0) -
docs/es/docs/environment-variables.md
Por ejemplo, podrías tener un archivo `main.py` con: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip | Consejo El segundo argumento de [`os.getenv()`](https://docs.python.org/3.8/library/os.html#os.getenv) es el valor por defecto a retornar.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 8.3K bytes - Click Count (0) -
docs/tr/docs/environment-variables.md
Örneğin `main.py` adında bir dosyanız şöyle olabilir: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip | İpucu [`os.getenv()`](https://docs.python.org/3.8/library/os.html#os.getenv) fonksiyonunun ikinci argümanı, bulunamadığında döndürülecek varsayılan (default) değerdir.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/pt/docs/environment-variables.md
Por exemplo, você poderia ter um arquivo `main.py` com: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip | Dica O segundo argumento para [`os.getenv()`](https://docs.python.org/3.8/library/os.html#os.getenv) é o valor padrão a ser retornado. Se não for fornecido, é `None` por padrão, Aqui fornecemos `"World"` como o valor padrão a ser usado.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.4K bytes - Click Count (0) -
tests/helper_test.go
func tidbSkip(t *testing.T, reason string) { if isTiDB() { t.Skipf("This test case skipped, because of TiDB '%s'", reason) } } func isTiDB() bool { return os.Getenv("GORM_DIALECT") == "tidb" } func isMysql() bool { return os.Getenv("GORM_DIALECT") == "mysql" } func mysqlVersionAtLeast(major, minor int) bool { if !isMysql() { return false } var version string
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:27:38 GMT 2026 - 8.6K bytes - Click Count (0)