- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 542 for 1200 (0.06 sec)
-
src/test/java/org/codelibs/core/convert/LongConversionUtilTest.java
/** * @throws Exception */ public void testToLong() throws Exception { assertEquals(new Long("1000"), LongConversionUtil.toLong("1,000")); } /** * @throws Exception */ public void testToPrimitiveLong() throws Exception { assertEquals(1000, LongConversionUtil.toPrimitiveLong("1,000")); } /** * @throws Exception */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIReportingUtilsTest.java
void testFormatDuration() { assertEquals("0.001 s", CLIReportingUtils.formatDuration(1)); assertEquals("0.999 s", CLIReportingUtils.formatDuration(1000 - 1)); assertEquals("1.000 s", CLIReportingUtils.formatDuration(1000)); assertEquals("59.999 s", CLIReportingUtils.formatDuration(60 * 1000 - 1)); assertEquals("01:00 min", CLIReportingUtils.formatDuration(60 * 1000));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
cmd/dummy-data-generator_test.go
checkEq(readAll(NewDummyDataGen(0, 0)), "") checkEq(readAll(NewDummyDataGen(10, 0)), readAll(NewDummyDataGen(10, int64(len(alphabets))))) checkEq(readAll(NewDummyDataGen(100, 0)), readAll(NewDummyDataGen(50, 0))+readAll(NewDummyDataGen(50, 50))) r := NewDummyDataGen(100, 0) r.Seek(int64(len(alphabets)), 0) checkEq(readAll(r), readAll(NewDummyDataGen(100-int64(len(alphabets)), 0))) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 02 15:13:05 UTC 2024 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
@Required @Size(max = 1000) public String id; @Required public String url; @Required public String threadName; public String errorName; public String errorLog; @Required @ValidateTypeFailure public String errorCount; @Required public String lastAccessTime; @Size(max = 1000) public String configId;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/CreateForm.java
public String term; @Required @Size(max = 10000) public String content; @Size(max = 1000) public String virtualHost; @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; @Size(max = 1000) public String createdBy; @ValidateTypeFailure public Long createdTime; public void initialize() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java
import jakarta.validation.constraints.Size; /** * @author Keiichi Watanabe */ public class EditForm extends CreateForm { @Required @Size(max = 1000) public String id; @Size(max = 1000) public String updatedBy; @ValidateTypeFailure public Long updatedTime; @Required @ValidateTypeFailure public Integer versionNo;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
*/ public class CreateForm { @Required public String dictId; @ValidateTypeFailure public Integer crudMode; @Required @Size(max = 1000) public String input; @Required @Size(max = 1000) public String output; public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.2K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/WebSocketEcho.java
} @Override public void onOpen(WebSocket webSocket, Response response) { webSocket.send("Hello..."); webSocket.send("...World!"); webSocket.send(ByteString.decodeHex("deadbeef")); webSocket.close(1000, "Goodbye, World!"); } @Override public void onMessage(WebSocket webSocket, String text) { System.out.println("MESSAGE: " + text); }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 04 11:40:21 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/IntegerConversionUtilTest.java
/** * @throws Exception */ public void testToInteger() throws Exception { assertEquals(new Integer("1000"), IntegerConversionUtil.toInteger("1,000")); } /** * @throws Exception */ public void testToPrimitiveInt() throws Exception { assertEquals(1000, IntegerConversionUtil.toPrimitiveInt("1,000")); } /** * @throws Exception */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
cmd/endpoint-ellipses_test.go
endpointSet{ []ellipses.ArgPattern{ []ellipses.Pattern{ { Prefix: "", Suffix: "", Seq: getSequences(1, 10, 0), }, { Prefix: "/export", Suffix: "/disk", Seq: getSequences(1, 10, 0), }, }, }, nil, [][]uint64{{10, 10, 10, 10, 10, 10, 10, 10, 10, 10}}, }, true, },
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 15.2K bytes - Viewed (0)