- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 375 for Passwort (0.08 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
.body(gzip("abcabcabc")) .addHeader("Content-Encoding: gzip") .build(), ) client = client .newBuilder() .authenticator(RecordingOkAuthenticator("password", null)) .build() executeSynchronously("/").assertBody("abcabcabc") } @Test fun rangeHeaderPreventsAutomaticGzip() { val gzippedBody = gzip("abcabcabc")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlJvmTest.kt
} @Test fun toUriPasswordSpecialCharacters() { val url = HttpUrl .Builder() .scheme("http") .host("host") .username("user") .password("=[]:;\"~|?#@^/$%*") .build() assertThat(url.toString()) .isEqualTo("http://user:%3D%5B%5D%3A%3B%22~%7C%3F%23%40%5E%2F$%25*@host/") assertThat(url.toUri().toString())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
docs/ja/docs/tutorial/security/get-current-user.md
さらに、こうした何千もの *path operations* は、たった3行で表現できるのです: {* ../../docs_src/security/tutorial002.py hl[30:32] *} ## まとめ これで、 *path operation関数* の中で直接現在のユーザーを取得できるようになりました。 既に半分のところまで来ています。 あとは、 `username` と `password` を実際にそのユーザーやクライアントに送る、 *path operation* を追加する必要があるだけです。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} String getPasswordInvalidAdminPasswords(); default boolean isValidAdminPassword(final String password) { return !split(getPasswordInvalidAdminPasswords(), "\n") .get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).anyMatch(s -> s.equals(password))); } String getSearchlogRequestHeaders(); default String[] getSearchlogRequestHeadersAsArray() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
helm-releases/minio-3.0.0.tgz
Additional pod labels podLabels: {} ## Configure resource requests and limits ## ref: http://kubernetes.io/docs/user-guide/compute-resources/ ## resources: requests: memory: 16Gi ## List of users to be created after minio install ## users: ## Username, password and policy to be assigned to the user ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics] ## Add new policies as explained here https://docs.min.io/docs/minio-multi-user-quickstart-guide.html ## NOTE: this will fail if...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 02 01:47:43 UTC 2021 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected String logonShare; /** Default domain for authentication */ protected String defaultDomain; /** Default username for authentication */ protected String defaultUserName; /** Default password for authentication */ protected String defaultPassword; /** NetBIOS hostname */ protected String netbiosHostname; /** NetBIOS name cache policy in seconds */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'search_engine.password'. <br> * The value is, e.g. <br> * comment: Password for authenticating to the search engine. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getSearchEnginePassword(); /** * Get the value for the key 'search_engine.password' as {@link Integer}. <br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
docs/ja/docs/tutorial/security/index.md
* `implicit` * `clientCredentials` * `authorizationCode` * しかし、同じアプリケーション内で認証を直接処理するために完全に機能する特定の「フロー」があります。 * `password`: 次のいくつかの章では、その例を紹介します。 * `openIdConnect`: OAuth2認証データを自動的に発見する方法を定義できます。 * この自動検出メカニズムは、OpenID Connectの仕様で定義されているものです。 /// tip | 豆知識 Google、Facebook、X (Twitter)、GitHubなど、他の認証/認可プロバイダを統合することも可能で、比較的簡単です。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
assertNotNull(info502); // Initial state of ShareInfo502 fields assertNull(info502.netname); assertNull(info502.remark); assertNull(info502.path); assertNull(info502.password); assertNull(info502.security_descriptor); assertEquals(0, info502.type); assertEquals(0, info502.permissions); assertEquals(0, info502.max_uses);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
cmd/admin-bucket-handlers.go
} cred, _, s3Err := validateAdminSignature(ctx, r, "") if s3Err != ErrNone { writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL) return } password := cred.SecretKey reqBytes, err := madmin.DecryptData(password, io.LimitReader(r.Body, r.ContentLength)) if err != nil { writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminConfigBadJSON, err), r.URL) return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 33.3K bytes - Viewed (0)