- Sort Score
- Result 10 results
- Languages All
Results 591 - 600 of 1,916 for tong (0.03 sec)
-
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
} /** * デフォルロケールで{@link DateFormat#LONG}スタイルのパターン文字列を返します。 * * @return {@link DateFormat#LONG}スタイルのパターン文字列 */ public static String getLongPattern() { return getLongPattern(LocaleUtil.getDefault()); } /** * 指定されたロケールで{@link DateFormat#LONG}スタイルのパターン文字列を返します。 * * @param locale
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java
long nanosPerSecond = NANOSECONDS.convert(1, SECONDS); assertThat(nanosPerSecond * Long.MAX_VALUE).isLessThan(0L); // Check that we wait long enough anyway (presumably as long as MAX_VALUE nanos): TimedWaiterThread waiter = new TimedWaiterThread(future, Long.MAX_VALUE, SECONDS); waiter.start(); waiter.awaitWaiting();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 15.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteResponse.java
/** * */ public class SmbComWriteResponse extends ServerMessageBlock { private long count; /** * * @param config */ public SmbComWriteResponse ( Configuration config ) { super(config); } /** * @return the count */ public long getCount () { return this.count; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/JobNotFoundException.java
*/ package org.codelibs.fess.exception; import org.codelibs.fess.es.config.exentity.ScheduledJob; public class JobNotFoundException extends FessSystemException { private static final long serialVersionUID = 1L; public JobNotFoundException(final ScheduledJob scheduledJob) { super(scheduledJob.toString()); } public JobNotFoundException(final String message) { super(message);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * @author ma2tani */ public class EditForm extends CreateForm { @Required @ValidateTypeFailure public Long id; public String getDisplayId() { return dictId + ":" + id; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1009 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/DerivedComparable.java
* * @author Kevin Bourrillion */ @GwtCompatible public class DerivedComparable extends BaseComparable { public DerivedComparable(String s) { super(s); } private static final long serialVersionUID = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 989 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.exception; public class SuggestSettingsException extends RuntimeException { private static final long serialVersionUID = 1L; public SuggestSettingsException(final String msg) { super(msg); } public SuggestSettingsException(final Throwable cause) { super(cause); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcConnectionMonitorTarget.java
private final HttpClientConnectionManager clientConnectionManager; private final long idleConnectionTimeout; public HcConnectionMonitorTarget(final HttpClientConnectionManager clientConnectionManager, final long idleConnectionTimeout) { this.clientConnectionManager = clientConnectionManager; this.idleConnectionTimeout = idleConnectionTimeout; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exentity/UserInfo.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
* @param wallTime The wall time of the project in milliseconds. * @param cause The cause of the build failure, may be {@code null}. */ public BuildFailure(MavenProject project, long execTime, long wallTime, Throwable cause) { super(project, execTime, wallTime); this.cause = cause; } /** * Gets the cause of the build failure. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0)