- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 422 for password (0.26 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
if (password != null) { // Cipher uses Strings passwd = String.copyValueOf(password); // Sun/Oracle advises to empty the char array java.util.Arrays.fill(password, ' '); } } System.out.println(dispatcher.encrypt(passwd, null));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0) -
docs/ru/docs/advanced/security/oauth2-scopes.md
## О сторонних интеграциях { #about-third-party-integrations } В этом примере мы используем OAuth2 «password flow» (аутентификация по паролю). Это уместно, когда мы входим в наше собственное приложение, вероятно, с нашим собственным фронтендом. Мы можем ему доверять при получении `username` и `password`, потому что он под нашим контролем.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:37:11 UTC 2025 - 20.7K bytes - Viewed (0) -
docs/de/docs/_llm-test.md
* Deep Learning * Machine Learning * Dependency Injection * HTTP Basic-Authentifizierung * HTTP Digest * ISO-Format * der JSON-Schema-Standard * das JSON-Schema * die Schema-Definition * Password Flow * Mobile * deprecatet * designt * ungültig * on the fly * Standard * Default * Groß-/Kleinschreibung ist relevant * Groß-/Kleinschreibung ist nicht relevant
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 07:17:04 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
ntlmServlet.init(servletConfig); setupMocksForAuth(); byte[] challenge = new byte[8]; NtlmPasswordAuthentication ntlmAuth = new NtlmPasswordAuthentication(cifsContext, "TEST_DOMAIN", "user", "password"); try (MockedStatic<NtlmSsp> ntlmSspMock = Mockito.mockStatic(NtlmSsp.class)) { ntlmSspMock.when(() -> NtlmSsp.authenticate(any(), any(), any(), any())).thenReturn(ntlmAuth);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
fastapi/applications.py
(fields) defined in the `response_model`. If you returned an object that contains an attribute `password` but the `response_model` does not include that field, the JSON sent to the client would not have that `password`. * Validation: whatever you return will be serialized with theRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 176.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
Authentication result = new Authentication( authCtx.get(AuthenticationContext.USERNAME), authCtx.get(AuthenticationContext.PASSWORD)); result.setPrivateKey(authCtx.get(AuthenticationContext.PRIVATE_KEY_PATH)); result.setPassphrase(authCtx.get(AuthenticationContext.PRIVATE_KEY_PASSPHRASE));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
this.auth.getUsername(), this.workstation, this.ntlmsspFlags); } // Use secure password handling String passwordString = null; if (this.auth.isGuest()) { passwordString = this.transportContext.getConfig().getGuestPassword(); } else {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
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 Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 19:13:52 UTC 2025 - 147.4K bytes - Viewed (0) -
mvnw
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then wget $QUIET "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" else wget $QUIET --http-user="$MVNW_USERNAME" --http-password="$MVNW_PASSWORD" "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath" fi elif command -v curl >/dev/null; then log "Found curl ... using curl" [ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--silent"
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 10.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/security/get-current-user.md
그리고 이 수천 개의 *경로 작동*은 모두 3줄 정도로 줄일 수 있습니다. {* ../../docs_src/security/tutorial002.py hl[30:32] *} ## 요약 이제 *경로 작동 함수*에서 현재 사용자를 직접 가져올 수 있습니다. 우리는 이미 이들 사이에 있습니다. 사용자/클라이언트가 실제로 `username`과 `password`를 보내려면 *경로 작동*을 추가하기만 하면 됩니다.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.7K bytes - Viewed (0)