- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 165 for password1 (0.04 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt
val credentialHeader = if (proxyAuthorization) "Proxy-Authorization" else "Authorization" val credential = Credentials.basic( auth.userName, String(auth.password), challenge.charset, ) return request .newBuilder() .header(credentialHeader, credential) .build() } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
*/ protected static boolean isMaskedValue(final String key) { return "http.proxy.password".equals(key) // || "ldap.admin.security.credentials".equals(key) // || "spnego.preauth.password".equals(key) // || "app.cipher.key".equals(key) // || "oic.client.id".equals(key) //
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
final String username = fessConfig.getFesenUsername(); final String password = fessConfig.getFesenPassword(); if (StringUtil.isNotBlank(username) && StringUtil.isNotBlank(password)) { final String value = username + ":" + password; final String basicAuth = "Basic " + java.util.Base64.getEncoder().encodeToString(value.getBytes(StandardCharsets.UTF_8));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/login/index.jsp
</div> </div> <div class="input-group mb-3"> <c:set var="ph_password"> <la:message key="labels.login.placeholder_password" /> </c:set> <la:password property="password" class="form-control" placeholder="${ph_password}" /> <div class="input-group-append"> <span class="input-group-text"> <em class="fa fa-lock fa-fw"> </span> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt
}, PASSWORD { override fun urlString(value: String): String = "http://:$******@****.***/" override fun encodedValue(url: HttpUrl): String = url.encodedPassword override operator fun set( builder: HttpUrl.Builder, value: String, ) { builder.password(value) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileAuthenticationCB.java
doColumn("hostname"); } public void columnParameters() { doColumn("parameters"); } public void columnPassword() { doColumn("password"); } public void columnPort() { doColumn("port"); } public void columnProtocolScheme() { doColumn("protocolScheme"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebAuthenticationCB.java
doColumn("hostname"); } public void columnParameters() { doColumn("parameters"); } public void columnPassword() { doColumn("password"); } public void columnPort() { doColumn("port"); } public void columnProtocolScheme() { doColumn("protocolScheme"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/WebPlatformUrlTestData.kt
var scheme = "" var username = "" var password: String? = null var host = "" var port = "" var path = "" var query = "" var fragment = "" fun expectParseFailure() = scheme.isEmpty() private operator fun set( name: String, value: String, ) { when (name) { "s" -> scheme = value "u" -> username = value "pass" -> password = value "h" -> host = value
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
}); } /** * Changes the password for a user in the LDAP directory. * * @param username the username of the user * @param password the new password * @return true if the password was changed successfully, false otherwise */ public boolean changePassword(final String username, final String password) { if (!fessConfig.isLdapAdminEnabled(username)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/login/newpassword.jsp
<div class="input-group mb-3"> <c:set var="ph_new_password"> <la:message key="labels.login.placeholder_new_password" /> </c:set> <la:password property="password" class="form-control" placeholder="${ph_new_password}" /> <div class="input-group-append"> <span class="input-group-text"> <em class="fa fa-lock fa-fw"> </span> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 3.1K bytes - Viewed (0)