- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 3,501 for final (0.09 sec)
-
android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java
* forwards the calls to the underlying {@code Map}. */ private static class CheckSetUpInvocationHandler implements InvocationHandler, Serializable { private final Map<String, String> map; private final AtomicBoolean setUpRan; CheckSetUpInvocationHandler(Map<String, String> map, AtomicBoolean setUpRan) { this.map = map; this.setUpRan = setUpRan; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
public class SuggestSettings { private static final Logger logger = LogManager.getLogger(SuggestSettings.class); protected final String settingsId; protected final Client client; protected final String settingsIndexName; protected final Map<String, Object> initialSettings; protected boolean initialized = false; protected final String badWordIndexName;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} public static String replace(final Object input, final String regex, final String replacement) { if (input == null) { return StringUtil.EMPTY; } return input.toString().replaceAll(regex, replacement); } public static String formatCode(final String prefix, final String style, final String mimetype, final String input) { if (input == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/SipHashFunction.java
*/ @Immutable @ElementTypesAreNonnullByDefault 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
public HtmlResponse upload(final UploadForm form) { validate(form, messages -> {}, this::asListHtml); verifyToken(this::asListHtml); final String fileName = form.bulkFile.getFileName(); final File tempFile = ComponentUtil.getSystemHelper().createTempFile("fess_restore_", ".tmp"); try (final InputStream in = form.bulkFile.getInputStream(); final OutputStream out = new FileOutputStream(tempFile)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
return processFieldConfigs(dataMap, fieldConfigs); } protected void putResultDataContent(final Map<String, Object> dataMap, final ResponseData responseData, final FessConfig fessConfig, final CrawlingConfig crawlingConfig, final DocumentHelper documentHelper, final String body, final String fileName) { final String content = documentHelper.getContent(crawlingConfig, responseData, body, dataMap);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
public static Path getEnvPath(final String envName, final String... names) { return getPath("WEB-INF/", "env/" + envName, names); } protected static Path getPath(final String root, final String base, final String... names) { try { final ServletContext servletContext = ComponentUtil.getComponent(ServletContext.class); final String webinfPath = servletContext.getRealPath("/" + root + base);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 08:52:32 UTC 2024 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
} public MyToken(final String word, final int startOffset, final int endOffset, final int posInc) { this(word, startOffset, endOffset, posInc, Integer.MAX_VALUE); // Integer.MAX_VALUE for seq means unused } public MyToken(final String word, final int startOffset, final int endOffset, final int posInc, final int seq) { this.word = word;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 17K bytes - Viewed (0) -
mockwebserver/api/mockwebserver3.api
public final fun getPort ()I public final fun getProtocolNegotiationEnabled ()Z public final fun getProtocols ()Ljava/util/List; public final fun getRequestCount ()I public final fun getServerSocketFactory ()Ljavax/net/ServerSocketFactory; public final fun getStarted ()Z public final fun noClientAuth ()V public final fun requestClientAuth ()V public final fun requireClientAuth ()V
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 03 21:59:45 UTC 2023 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
final Set<String> dateFieldSet = getIndexAdminDateFieldSet(); final Set<String> integerFieldSet = getIndexAdminIntegerFieldSet(); final Set<String> longFieldSet = getIndexAdminLongFieldSet(); final Set<String> floatFieldSet = getIndexAdminFloatFieldSet(); final Set<String> doubleFieldSet = getIndexAdminDoubleFieldSet(); return source.entrySet().stream().map(e -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0)