- Sort Score
 - Result 10 results
 - Languages All
 
Results 1371 - 1380 of 3,616 for einmal (0.06 sec)
- 
				
				
android/guava/src/com/google/common/base/Suppliers.java
} @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } private static final class NonSerializableMemoizingSupplier<T extends @Nullable Object> implements Supplier<T> { private final Object lock = new Object(); @SuppressWarnings("UnnecessaryLambda") // Must be a fixed singleton object private static final Supplier<@Nullable Void> SUCCESSFULLY_COMPUTED = () -> {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) - 
				
				
android/guava/src/com/google/common/hash/SipHashFunction.java
* @author Daniel J. Bernstein */ @Immutable final class SipHashFunction extends AbstractHashFunction implements Serializable { static final HashFunction SIP_HASH_24 = new SipHashFunction(2, 4, 0x0706050403020100L, 0x0f0e0d0c0b0a0908L); // The number of compression rounds. private final int c; // The number of finalization rounds. private final int d; // Two 64-bit keys (represent a single 128-bit key).Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 5.3K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java
*/ public class FieldNotStaticRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -7791347225750660981L; /** * The target class. */ private final Class<?> targetClass; /** * The name of the field. */ private final String fieldName; /** * Creates a {@link FieldNotStaticRuntimeException}. *Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java
*/ public class MethodNotStaticRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 7186052234464152208L; /** * The target class. */ private final Class<?> targetClass; /** * The name of the method. */ private final String methodName; /** * Creates a {@link MethodNotStaticRuntimeException}. *Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) - 
				
				
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java
/** * WagonConfigurationException */ @Deprecated public class WagonConfigurationException extends TransferFailedException { static final long serialVersionUID = 1; private final String originalMessage; private final String repositoryId; public WagonConfigurationException(String repositoryId, String message, Throwable cause) {Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) - 
				
				
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
implements Serializable { private static final long serialVersionUID = 3; final Strength keyStrength; final Strength valueStrength; final Equivalence<Object> keyEquivalence; final Equivalence<Object> valueEquivalence; final int concurrencyLevel; transient ConcurrentMap<K, V> delegate; AbstractSerializationProxy(Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
* * @param id The unique identifier of the item. * @param inputs The input words. * @param outputs The output synonyms. */ public SynonymItem(final long id, final String[] inputs, final String[] outputs) { this.id = id; this.inputs = inputs; this.outputs = outputs; if (id == 0) { // create newInputs = inputs;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java
*/ public class AccessTokenPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public AccessTokenPager() { // nothing } /** * The default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * The total number of records available. */Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
* @return JSON response containing job logs list with pagination info */ @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {}); final JobLogPager pager = copyBeanToNewBean(body, JobLogPager.class); final List<JobLog> list = jobLogService.getJobLogList(pager);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) - 
				
				
src/main/java/jcifs/smb1/dcerpc/UnicodeString.java
* * @param str wrapped string * @param zterm whether the string should be zero terminated */ public UnicodeString(final String str, final boolean zterm) { this.zterm = zterm; final int len = str.length(); final int zt = zterm ? 1 : 0; length = maximum_length = (short) ((len + zt) * 2); buffer = new short[len + zt]; int i;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0)