- Sort Score
- Result 10 results
- Languages All
Results 421 - 430 of 1,404 for user2 (0.01 sec)
-
docs/nl/docs/features.md
return user_id # Een Pydantic model class User(BaseModel): id: int name: str joined: date ``` Vervolgens kan je het op deze manier gebruiken: ```Python my_user: User = User(id=3, name="John Doe", joined="2018-07-19") second_user_data = { "id": 4, "name": "Mary", "joined": "2018-11-30", } my_second_user: User = User(**second_user_data) ``` /// info
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Sep 03 13:50:38 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
appendJson("query-id", entity.getQueryId(), buf).append(','); appendJson("user-info-id", entity.getUserInfoId(), buf).append(','); appendJson("user-session-id", entity.getUserSessionId(), buf).append(','); appendJson("user", entity.getUser(), buf).append(','); appendJson("search-word", entity.getSearchWord(), buf).append(',');
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/GroupDbm.java
public String getEntityTypeName() { return "org.codelibs.fess.opensearch.user.exentity.Group"; } @Override public String getConditionBeanTypeName() { return "org.codelibs.fess.opensearch.user.cbean.GroupCB"; } @Override public String getBehaviorTypeName() { return "org.codelibs.fess.opensearch.user.exbhv.GroupBhv"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
guava/src/com/google/common/cache/RemovalCause.java
/** * The reason why a cached entry was removed. * * @author Charles Fry * @since 10.0 */ @GwtCompatible public enum RemovalCause { /** * The entry was manually removed by the user. This can result from the user invoking {@link * Cache#invalidate}, {@link Cache#invalidateAll(Iterable)}, {@link Cache#invalidateAll()}, {@link * Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}. */ EXPLICIT {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessCredential.java
*/ package org.codelibs.fess.app.web.base.login; /** * Interface for Fess credential management. * Provides access to user identification information. */ public interface FessCredential { /** * Gets the user ID for this credential. * @return The user ID. */ String getUserId();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 927 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Group.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.user.exentity; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.opensearch.user.bsentity.BsGroup; /** * @author FreeGen */ public class Group extends BsGroup { private static final long serialVersionUID = 1L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.entity; import java.io.Serializable; /** * Interface representing a Fess user with authentication and authorization information. * Provides access to user name, roles, groups, and permissions. */ public interface FessUser extends Serializable { /** * Gets the user's display name. * @return The user's name. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
guava-gwt/src/com/google/common/annotations/Annotations.gwt.xml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/SearchBody.java
*/ package org.codelibs.fess.app.web.api.admin.user; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for user administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** User ID */ public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 979 bytes - Viewed (0) -
src/test/java/jcifs/util/InputValidatorTest.java
@ValueSource(strings = { "user", "user123", "user.name", "user-name", "user_name", "user@domain.com" }) void testValidUsernames(String username) { assertDoesNotThrow(() -> InputValidator.validateUsername(username)); } @ParameterizedTest @DisplayName("Test invalid usernames") @ValueSource(strings = { "user name", // space "user#name", // invalid character
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.9K bytes - Viewed (0)