- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 811 for user1 (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java
*/ @Required public String dictId; /** * The multipart file containing the Kuromoji user dictionary to be uploaded. * This file should be in the Kuromoji user dictionary format containing custom word definitions. */ @Required public MultipartFormFile kuromojiFile; /** * Default constructor for UploadForm. * Creates a new instance with default values. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.bad_word_list_suggest_word=Bad Word labels.bad_word_suggest_word=Bad Word labels.bad_word_file=Bad Word File labels.user_configuration=User labels.user_list_name=Name labels.user_password=Password labels.user_confirm_password=Password (Confirm) labels.user_title_details=User labels.role_configuration=Role labels.role_list_name=Name labels.role_name=Name labels.role_title_details=Role labels.group_configuration=Group
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessUserNotFoundException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when a user is not found in the Fess system. * This exception is typically thrown during authentication or user lookup operations * when the specified user does not exist in the system. */ public class FessUserNotFoundException extends FessSystemException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
/** * <code>user.dir</code> system property. */ public static final String USER_DIR = System.getProperty("user.dir"); /** * <code>user.home</code> system property. */ public static final String USER_HOME = System.getProperty("user.home"); /** * Returns the system property value for the specified key. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterators.java
* an {@code Iterable} is impossible. However, the contents can be <i>copied</i> into a collection * using {@link Collections#list}. * * <p><b>Java 9 users:</b> use {@code enumeration.asIterator()} instead, unless it is important to * return an {@code UnmodifiableIterator} instead of a plain {@code Iterator}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 50.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.22.md
- Adds feature gate `KubeletInUserNamespace` which enables support for running kubelet in a user namespace. The user namespace has to be created before running kubelet. All the node components such as CRI need to be running in the same user namespace.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserInfoService.java
import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv; import jakarta.annotation.Resource; /** * Service class for managing user information data. * This service provides operations for maintaining and cleaning up user information records. */ public class UserInfoService { @Resource private UserInfoBhv userInfoBhv; @Resource private SystemHelper systemHelper;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/packaging/rpm/init.d/fess
export SEARCH_ENGINE_HTTP_URL export FESS_JAVA_OPTS export JAVA_HOME lockfile=/var/lock/subsys/$prog # backwards compatibility for old config sysconfig files, pre 0.90.1 if [ -n $USER ] && [ -z $FESS_USER ] ; then FESS_USER=$USER fi checkJava() { if [ -x "$JAVA_HOME/bin/java" ]; then JAVA="$JAVA_HOME/bin/java" else JAVA=`which java` fi if [ ! -x "$JAVA" ]; then
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 3.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/BridgeInterceptor.kt
import okhttp3.internal.toHostHeader import okio.GzipSource import okio.buffer /** * Bridges from application code to network code. First it builds a network request from a user * request. Then it proceeds to call the network. Finally it builds a user response from the network * response. */ class BridgeInterceptor( private val cookieJar: CookieJar, ) : Interceptor { @Throws(IOException::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
*/ public static byte[] getLMv2Response(final String domain, final String user, final String password, final byte[] challenge, final byte[] clientChallenge) throws GeneralSecurityException { return getLMv2Response(domain, user, getNTHash(password), challenge, clientChallenge); } /** * Creates the LMv2 response for the supplied information.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0)