- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 3,503 for 1final (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
import org.slf4j.LoggerFactory; /** * @author shinsuke * @author kaorufuzita * */ public final class TextUtil { private static final Logger logger = LoggerFactory.getLogger(TextUtil.class); private TextUtil() { } public static class TextNormalizeContext { private final Reader reader; private int initialCapacity = 10000; private int maxAlphanumTermSize = -1;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreBooster.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); final SearchEngineClient client = ComponentUtil.getSearchEngineClient(); final String index = fessConfig.getIndexDocumentUpdateIndex(); final Object url = params.get("url"); if (url == null) { return StringUtil.EMPTY_STRINGS; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/InvalidArtifactRTException.java
* e.g. one of groupId, artifactId, version or type is null. */ public class InvalidArtifactRTException extends RuntimeException { private final String groupId; private final String artifactId; private final String version; private final String type; private final String baseMessage; public InvalidArtifactRTException(String groupId, String artifactId, String version, String type, String message) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedComponentConfigurator.java
converterLookup = new EnhancedConverterLookup(); } @Override public void configureComponent( final Object component, final PlexusConfiguration configuration, final ExpressionEvaluator evaluator, final ClassRealm realm, final ConfigurationListener listener) throws ComponentConfigurationException { try {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
@Override public void storeData(final ResponseData responseData, final ResultData resultData) { resultData.setTransformerName(getName()); initBaseDir(); final String url = responseData.getUrl(); final String path = getFilePath(url); synchronized (this) { final File file = createFile(path);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
*/ @Override public final void error () { this.error = true; synchronized ( this ) { notifyAll(); } } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#clearReceived() */ @Override public final void clearReceived () { this.received = false; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
*/ protected static final byte[] NTLMSSP_SIGNATURE = new byte[] { (byte) 'N', (byte) 'T', (byte) 'L', (byte) 'M', (byte) 'S', (byte) 'S', (byte) 'P', (byte) 0 }; /** * NTLM version */ protected static final byte[] NTLMSSP_VERSION = new byte[] { 6, 1, 0, 0, 0, 0, 0, 15 }; protected static final int NTLMSSP_TYPE1 = 0x1;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
public class ApiAdminDictStopwordsAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminDictStopwordsAction.class); @Resource private StopwordsService stopwordsService; // GET /api/admin/dict/stopwords/settings/{dictId} @Execute public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) { body.dictId = dictId;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
throw new RuntimeException("Wrong length: " + x); } } } private static String martinRepeat(String string, int count) { final int len = string.length(); final int size = len * count; final char[] array = new char[size]; string.getChars(0, len, array, 0); int n; for (n = len; n < size - n; n <<= 1) { System.arraycopy(array, 0, array, n, n); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Sep 17 20:24:24 UTC 2021 - 3.3K bytes - Viewed (0)