- Sort Score
- Result 10 results
- Languages All
Results 1001 - 1010 of 1,818 for Pong (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
@Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; @Size(max = 1000) public String createdBy; @ValidateTypeFailure public Long createdTime; public void initialize() { target = Constants.DEFAULT_JOB_TARGET; cronExpression = Constants.DEFAULT_CRON_EXPRESSION; scriptType = Constants.DEFAULT_JOB_SCRIPT_TYPE;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.2K bytes - Viewed (0) -
guava/src/com/google/common/base/FunctionalEquivalence.java
* * @author Bob Lee * @since 10.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault final class FunctionalEquivalence<F, T> extends Equivalence<F> implements Serializable { private static final long serialVersionUID = 0; private final Function<? super F, ? extends @Nullable T> function; private final Equivalence<T> resultEquivalence; FunctionalEquivalence(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon May 01 19:48:29 UTC 2023 - 2.3K bytes - Viewed (0) -
docs/security/README.md
Further any secret key (apart from the KMS-generated ones) is 256 bits long. The KMS-generated keys may be 256 bits but this depends on the KMS capabilities and configuration.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Feb 12 00:51:25 UTC 2022 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
// ============ public static OptionalEntity<ElevateWord> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new ElevateWord()).map(entity -> { entity.setCreatedBy(username);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
form.available = entity.isEnabled() ? Constants.ON : null; } private static OptionalEntity<ScheduledJob> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new ScheduledJob()).map(entity -> { entity.setCreatedBy(username);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 18.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/ResponseBody.kt
abstract fun contentType(): MediaType? /** * Returns the number of bytes in that will returned by [bytes], or [byteStream], or -1 if * unknown. */ abstract fun contentLength(): Long fun byteStream(): InputStream = source().inputStream() abstract fun source(): BufferedSource /** * Returns the response as a byte array. *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcException.java
import jcifs.smb.WinError; import jcifs.util.Hexdump; /** * */ public class DcerpcException extends CIFSException implements DcerpcError, WinError { /** * */ private static final long serialVersionUID = -6113895861333916945L; static String getMessageByDcerpcError ( int errcode ) { int min = 0; int max = DCERPC_FAULT_CODES.length; while ( max >= min ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 09:02:44 UTC 2020 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/io/ByteArrayDataOutput.java
@Override void writeByte(int v); @Override void writeShort(int v); @Override void writeChar(int v); @Override void writeInt(int v); @Override void writeLong(long v); @Override void writeFloat(float v); @Override void writeDouble(double v); @Override void writeChars(String s); @Override void writeUTF(String s); /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 28 20:13:02 UTC 2023 - 2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AllEqualOrdering.java
return (Ordering<S>) this; } private Object readResolve() { return INSTANCE; } @Override public String toString() { return "Ordering.allEqual()"; } private static final long serialVersionUID = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:24:26 UTC 2024 - 1.9K bytes - Viewed (0)