- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 165 for passWord (0.04 sec)
-
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) -
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) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsUserCB.java
doColumn("name"); } public void columnPager() { doColumn("pager"); } public void columnPassword() { doColumn("password"); } public void columnPhysicalDeliveryOfficeName() { doColumn("physicalDeliveryOfficeName"); } public void columnPostOfficeBox() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/TestValueFactory.kt
var dns: Dns = Dns.SYSTEM var proxy: Proxy = Proxy.NO_PROXY var proxySelector: ProxySelector = RecordingProxySelector() var proxyAuthenticator: Authenticator = RecordingOkAuthenticator("password", null) var connectionSpecs: List<ConnectionSpec> = listOf( ConnectionSpec.MODERN_TLS, ConnectionSpec.COMPATIBLE_TLS, ConnectionSpec.CLEARTEXT, ) var protocols: List<Protocol> =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 7.7K 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 Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K 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 Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 10.9K 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) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
@Override public String getIndexFieldFiletype() { return "filetype"; } @Override public String getPasswordInvalidAdminPasswords() { return "admin,password,123456"; } @Override public String getPluginVersionFilter() { return ""; } @Override public String getPluginRepositories() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Search engine username configuration key. */ public static final String FESEN_USERNAME = "fesen.username"; /** Search engine password configuration key. */ public static final String FESEN_PASSWORD = "fesen.password"; // ============================================================ // Execution Type Constants // ============================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0)