- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,394 for greater (0.09 sec)
-
guava/src/com/google/common/collect/ImmutableMapEntry.java
* created arrays to have a {@code @Nullable} element type even when they're created directly with * {@code new ImmutableMapEntry[...]}, so it seems silly to insist on that only here. */ @SuppressWarnings("unchecked") // Safe as long as the javadocs are followed static <K, V> ImmutableMapEntry<K, V>[] createEntryArray(int size) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 21:42:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
@Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; /** * The user who created this label type. */ @Size(max = 1000) public String createdBy; /** * The timestamp when this label type was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
@Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; /** * The username of who created this scheduled job. */ @Size(max = 1000) public String createdBy; /** * The timestamp when this scheduled job was created. */ @ValidateTypeFailure public Long createdTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
import jakarta.validation.constraints.Size; /** * The create form for Bad Word. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { // Default constructor } /** * The CRUD mode for form processing (create, update, delete operations). */ @ValidateTypeFailure public Integer crudMode;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} // POST /api/admin/elevateword/setting /** * Creates a new elevate word setting. * Also adds the elevate word to the suggest helper for search enhancement. * * @param body elevate word setting data to create * @return JSON response with created setting ID and status */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestCacheFactory.java
* based on the current Maven session and environment. * * @since 4.0.0 * @see RequestCache */ @Experimental public interface RequestCacheFactory { /** * Creates a new RequestCache instance. * The created cache should be configured according to the current Maven session * and environment settings. * * @return A new RequestCache instance */ RequestCache createCache();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 1.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
this.nameFormat = nameFormat; return this; } /** * Sets daemon or not for new threads created with this ThreadFactory. * * <p><b>Java 21+ users:</b> use {@link Thread.Builder.OfPlatform#daemon(boolean)} instead. * * @param daemon whether or not new Threads created with this ThreadFactory will be daemon threads * @return this for the builder pattern */ @CanIgnoreReturnValue
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:35:26 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
/** * Creates a new related content setting. * * @param body related content setting data to create * @return JSON response with created setting ID and status */ @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java
@Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; /** User who created this configuration */ @Size(max = 1000) public String createdBy; /** Timestamp when this configuration was created */ @ValidateTypeFailure public Long createdTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0)