- Sort Score
- Result 10 results
- Languages All
Results 1041 - 1050 of 3,501 for final (0.17 sec)
-
android/guava-tests/test/com/google/common/eventbus/outside/DeepInterfaceTest.java
final List<Object> annotatedIn1Events = Lists.newArrayList(); final List<Object> annotatedIn1And2Events = Lists.newArrayList(); final List<Object> annotatedIn1And2AndClassEvents = Lists.newArrayList(); final List<Object> declaredIn1AnnotatedIn2Events = Lists.newArrayList(); final List<Object> declaredIn1AnnotatedInClassEvents = Lists.newArrayList();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 08 21:35:40 UTC 2022 - 4.2K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/AsynchronousGet.java
import okhttp3.Call; import okhttp3.Callback; import okhttp3.Headers; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; import okhttp3.ResponseBody; public final class AsynchronousGet { private final OkHttpClient client = new OkHttpClient(); public void run() throws Exception { Request request = new Request.Builder() .url("http://publicobject.com/helloworld.txt") .build();
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun May 22 01:29:42 UTC 2016 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/DecimalFormatSymbolsUtil.java
import java.util.Map; import org.codelibs.core.misc.LocaleUtil; /** * {@link DecimalFormatSymbols}用のユーティリティクラスです。 * * @author higa */ public abstract class DecimalFormatSymbolsUtil { private static final Map<Locale, DecimalFormatSymbols> CACHE = newConcurrentHashMap(); /** * {@link DecimalFormatSymbols}を返します。 * * @return {@link DecimalFormatSymbols} */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java
@Experimental public class ModelParserException extends MavenException { /** * The one-based index of the line containing the error. */ private final int lineNumber; /** * The one-based index of the column containing the error. */ private final int columnNumber; public ModelParserException() { this(null, null); } public ModelParserException(String message) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Sep 22 07:25:10 UTC 2023 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/KeyMatchDbm.java
protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Singleton // ========= private static final KeyMatchDbm _instance = new KeyMatchDbm();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/BackupTests.java
@Tag("it") public class BackupTests extends CrudTestBase { private static final String NAME_PREFIX = "backupTest_"; private static final String API_PATH = "/api/admin/backup"; private static final String LIST_ENDPOINT_SUFFIX = "files"; private static final String ITEM_ENDPOINT_SUFFIX = "file"; private static final String KEY_PROPERTY = ""; @Override protected String getNamePrefix() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
} public String get(final String mimetype) { final String filetype = mimetypeMap.get(mimetype); if (StringUtil.isBlank(filetype)) { return defaultValue; } return filetype; } public String getDefaultValue() { return defaultValue; } public void setDefaultValue(final String defaultValue) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ElevateWordToLabelDbm.java
protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Singleton // =========
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/ChecksumHashFunction.java
* * @author Colin Decker */ @Immutable @ElementTypesAreNonnullByDefault final class ChecksumHashFunction extends AbstractHashFunction implements Serializable { private final ImmutableSupplier<? extends Checksum> checksumSupplier; private final int bits; private final String toString; ChecksumHashFunction(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:05:16 UTC 2024 - 4.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableMap.java
* implementation. Experimentally determined. */ static final int MAX_HASH_BUCKET_LENGTH = 8; // entries in insertion order @VisibleForTesting final transient Entry<K, V>[] entries; // array of linked lists of entries @CheckForNull private final transient @Nullable ImmutableMapEntry<K, V>[] table; // 'and' with an int to get a table index private final transient int mask;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 28 18:11:09 UTC 2024 - 16.2K bytes - Viewed (0)