- Sort Score
- Result 10 results
- Languages All
Results 1961 - 1970 of 3,426 for overwrite (0.2 sec)
-
src/test/java/org/codelibs/opensearch/extension/ExtensionPlugin.java
import org.opensearch.plugins.AnalysisPlugin; import org.opensearch.plugins.Plugin; public class ExtensionPlugin extends Plugin implements AnalysisPlugin { @Override public Map<String, AnalysisProvider<CharFilterFactory>> getCharFilters() { final Map<String, AnalysisProvider<CharFilterFactory>> extra = new HashMap<>();
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java
private ApiExtractor extractor; @Override protected void setUp() throws Exception { super.setUp(); server = new TestApiExtractorServer(port); server.start(); extractor = new ApiExtractor(); extractor.setUrl("http://127.0.0.1:" + port + "/"); extractor.init(); } @Override protected void tearDown() throws Exception {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exbhv/SearchLogBhv.java
private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexLogIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_log"), name); } return indexName; } @Override protected LocalDateTime toLocalDateTime(final Object value) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java
final StringBuilder buf = new StringBuilder(); clientFactory.addClient("test:.*", new CrawlerClient() { @Override public ResponseData execute(final RequestData request) { return null; } @Override public void setInitParameterMap(final Map<String, Object> params) { buf.append("value=").append(params.get("hoge"));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 5.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/InterruptibleTask.java
this.task = task; } @Override public void run() {} private void setOwner(Thread thread) { super.setExclusiveOwnerThread(thread); } @VisibleForTesting @CheckForNull Thread getOwner() { return super.getExclusiveOwnerThread(); } @Override public String toString() { return task.toString(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 10.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Dns.kt
* lookup IP addresses. Most custom [Dns] implementations should delegate to this instance. */ @JvmField val SYSTEM: Dns = DnsSystem() private class DnsSystem : Dns { override fun lookup(hostname: String): List<InetAddress> { try { return InetAddress.getAllByName(hostname).toList() } catch (e: NullPointerException) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/QueueTestSuiteBuilder.java
*/ @CanIgnoreReturnValue public QueueTestSuiteBuilder<E> skipCollectionTests() { runCollectionTests = false; return this; } @SuppressWarnings("rawtypes") // class literals @Override protected List<Class<? extends AbstractTester>> getTesters() { List<Class<? extends AbstractTester>> testers = new ArrayList<>(); if (runCollectionTests) { testers.addAll(super.getTesters()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 26 19:46:10 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
*/ void fixupDomain ( String domain ); /** * Reduces path consumed by the given value * * @param i */ void stripPathConsumed ( int i ); @Override DfsReferralDataInternal next (); /** * @param link */ void setLink ( String link ); /** * @return cache key */ String getKey ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UnicodeString.java
int i; for ( i = 0; i < len; i++ ) { this.buffer[ i ] = (short) str.charAt(i); } if ( zterm ) { this.buffer[ i ] = (short) 0; } } @Override public String toString () { int len = this.length / 2 - ( this.zterm ? 1 : 0 ); char[] ca = new char[len]; for ( int i = 0; i < len; i++ ) { ca[ i ] = (char) this.buffer[ i ];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt
*/ abstract val collectedInformation: Serializable interface Params : BuildServiceParameters { val monitoredTaskPaths: SetProperty<String> } override fun onFinish(event: FinishEvent) { if (event !is TaskFinishEvent) { return } val taskPath = event.descriptor.taskPath if (shouldInclude(taskPath)) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 11 07:01:27 UTC 2022 - 2.3K bytes - Viewed (0)