- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 357 for f000 (0.01 sec)
-
android/guava-tests/test/com/google/common/cache/CacheBuilderSpecTest.java
CacheBuilder.newBuilder().maximumSize(9000), CacheBuilder.from(spec)); } public void testParse_maximumSizeRepeated() { assertThrows(IllegalArgumentException.class, () -> parse("maximumSize=10, maximumSize=20")); } public void testParse_maximumWeight() { CacheBuilderSpec spec = parse("maximumWeight=9000"); assertNull(spec.initialCapacity); assertEquals(9000, spec.maximumWeight.longValue());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 19.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
DocList docList = new DocList(); assertEquals(0, docList.getContentSize()); assertEquals(0, docList.getProcessingTime()); docList.addContentSize(1000); docList.addProcessingTime(999); assertEquals(1000, docList.getContentSize()); assertEquals(999, docList.getProcessingTime()); docList.clear(); assertEquals(0, docList.getContentSize());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/CreateForm.java
*/ @Required @Size(max = 1000) public String value; /** * The web configuration ID associated with this request header. */ @Required @Size(max = 1000) public String webConfigId; /** * The username of who created this request header. */ @Size(max = 1000) public String createdBy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java
/** Token (word) to be added to the dictionary */ @Required @Size(max = 1000) public String token; /** Segmentation information for the token */ @Required @Size(max = 1000) public String segmentation; /** Reading (pronunciation) of the token in katakana */ @Required @Size(max = 1000) public String reading; /** Part of speech tag for the token */ @Required
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
public Integer crudMode; /** * The regular expression pattern to match request paths. */ @Required @Size(max = 1000) public String regex; /** * The replacement pattern for matched paths. */ @Size(max = 1000) public String replacement; /** * The processing type for path mapping. */ @Required public String processType;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
*/ @Size(max = 1000) public String parameters; /** * The web configuration ID this authentication is associated with. */ @Required @Size(max = 1000) public String webConfigId; /** * The user who created this authentication configuration. */ @Size(max = 1000) public String createdBy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
*/ @ValidateTypeFailure public Integer crudMode; /** * The name of the access token. * This is a required field with a maximum length of 1000 characters. */ @Required @Size(max = 1000) public String name; /** * The actual access token string. * This is the token value that will be used for authentication. * Maximum length is 10000 characters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/JobProcessTest.java
JobProcess jobProcess = new JobProcess(mockProcess, 100, callback); InputStreamThread thread = jobProcess.getInputStreamThread(); thread.start(); thread.join(1000); assertEquals(2, callbackResults.size()); assertEquals("integration test", callbackResults.get(0)); assertEquals("second line", callbackResults.get(1));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 8.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
CacheBuilder.newBuilder().expireAfterAccess(1000, MILLISECONDS).ticker(fakeTicker).build(); cache.put(0, 10); cache.put(2, 30); fakeTicker.advance(999, MILLISECONDS); assertEquals(Integer.valueOf(30), cache.getIfPresent(2)); fakeTicker.advance(1, MILLISECONDS); assertEquals(Integer.valueOf(30), cache.getIfPresent(2)); fakeTicker.advance(1000, MILLISECONDS);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
/** The name of the file configuration (required, maximum 200 characters). */ @Required @Size(max = 200) public String name; /** The description of the file configuration (maximum 1000 characters). */ @Size(max = 1000) public String description; /** The file paths to crawl (required, must be valid file URIs). */ @Required @UriType(protocolType = ProtocolType.FILE)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0)