- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 53 for Local (0.03 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal("")); assertEquals("******@****.***bs.local", fessConfig.getLdapSecurityPrincipal("123456789")); assertEquals("******@****.***bs.local", fessConfig.getLdapSecurityPrincipal("1234567890")); assertEquals("******@****.***bs.local", fessConfig.getLdapSecurityPrincipal("12345678901")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
guava/src/com/google/common/base/NullnessCasts.java
* doesn't work: Because nullness analyses typically infer the nullness of local variables, * there's no way to assign a {@code @Nullable T} to a field {@code T foo;} and instruct the * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}. * (And even if annotations on local variables were permitted as an optional hint, no annotation
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 20:49:47 UTC 2025 - 3.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/ClientAuthTest.kt
.build() serverCert = HeldCertificate .Builder() .signedBy(serverIntermediateCa) .serialNumber(3L) .commonName("Local Host") .addSubjectAlternativeName(server.hostName) .build() clientRootCa = HeldCertificate .Builder() .serialNumber(1L) .certificateAuthority(1)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
*/ public ExecJob timeout(final int timeout) { this.timeout = timeout; return this; } /** * Sets whether to use local Fesen instance. * * @param useLocalFesen true to use local Fesen, false otherwise * @return this ExecJob instance for method chaining */ public ExecJob useLocalFesen(final boolean useLocalFesen) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
*/ boolean isDevelopmentHere(); /** * Get the value for the key 'environment.title'. <br> * The value is, e.g. Local Development <br> * comment: The title of environment (e.g. local or integration or production) * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getEnvironmentTitle(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/NullnessCasts.java
* doesn't work: Because nullness analyses typically infer the nullness of local variables, * there's no way to assign a {@code @Nullable T} to a field {@code T foo;} and instruct the * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}. * (And even if annotations on local variables were permitted as an optional hint, no annotation
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 20:49:47 UTC 2025 - 4K bytes - Viewed (0) -
integration-tests/gradle/gradlew.bat
@rem ########################################################################## @rem @rem Gradle startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%"=="" set DIRNAME=. @rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME%
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 21 19:14:29 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/LocalUserCredential.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.base.login; import org.lastaflute.web.login.credential.UserPasswordCredential; /** * The credential for a local user. */ public class LocalUserCredential extends UserPasswordCredential implements FessCredential { /** * Creates a new LocalUserCredential with the specified user and password. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
default -> throw new IllegalArgumentException("Unexpected value: " + serializer); }; } /** * Serializes an object using Kryo serialization. * <p> * Uses the thread-local Kryo instance to serialize the object along with * its class information. The serialized data is written to a byte array * output stream. * </p> * * @param obj the object to serialize
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
assertEquals(new TypeToken<List<String>>() {}, t); } public void testNonStaticLocalClass() { class Local<T> {} TypeToken<Local<String>> type = new TypeToken<Local<String>>() {}; assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType()); assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType()); } public void testStaticLocalClass() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0)