- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for impls (0.02 sec)
-
fess-crawler-opensearch/src/main/resources/crawler_opensearch.xml
<component name="urlQueueService" class="org.codelibs.fess.crawler.service.impl.OpenSearchUrlQueueService"> <arg>crawlerConfig</arg> </component> <component name="dataService" class="org.codelibs.fess.crawler.service.impl.OpenSearchDataService"> <arg>crawlerConfig</arg> </component> <component name="urlFilterService" class="org.codelibs.fess.crawler.service.impl.OpenSearchUrlFilterService"> <arg>crawlerConfig</arg> </component>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 2.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
import org.codelibs.fess.crawler.entity.UrlQueue; import org.codelibs.fess.crawler.filter.impl.UrlFilterImpl; import org.codelibs.fess.crawler.service.DataService; import org.codelibs.fess.crawler.service.UrlFilterService; import org.codelibs.fess.crawler.service.UrlQueueService; import org.codelibs.fess.crawler.transformer.impl.FileTransformer; import org.codelibs.fess.crawler.util.CrawlerWebServer;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 7.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java
ImmutableSet<String> set = ImmutableSet.of("a", "b", "c", "c", "c", "c", "b", "b", "a", "a", "c", "c", "c", "a"); assertThat(set).containsExactly("a", "b", "c").inOrder(); } @GwtIncompatible("Builder impl") public void testBuilderForceCopy() { ImmutableSet.Builder<Integer> builder = ImmutableSet.builder(); builder.add(-1); Object[] prevArray = null; for (int i = 0; i < 10; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 13.7K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
api("commons-lang:commons-lang:2.6") api("javax.activation:activation:1.1.1") api("javax.xml.bind:jaxb-api:2.3.1") api("com.sun.xml.bind:jaxb-core:2.2.11") api("com.sun.xml.bind:jaxb-impl:2.2.11") api("junit:junit:4.13.2") api("org.spockframework:spock-core:$spockVersion") api("org.spockframework:spock-junit4:$spockVersion") api("org.asciidoctor:asciidoctorj:2.5.11")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.service.impl; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 6.3K bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt
val jansi = "org.fusesource.jansi:jansi" val jatl = "com.googlecode.jatl:jatl" val javaPoet = "com.squareup:javapoet" val jaxbCore = "com.sun.xml.bind:jaxb-core" val jaxbImpl = "com.sun.xml.bind:jaxb-impl" val jcifs = "jcifs:jcifs" val jclToSlf4j = "org.slf4j:jcl-over-slf4j" val jcommander = "com.beust:jcommander" val jetbrainsAnnotations = "org.jetbrains:annotations"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 08:06:17 UTC 2024 - 15.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java
*/ package org.codelibs.fess.crawler.entity; import java.io.IOException; import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.fess.crawler.service.impl.OpenSearchDataService; import org.lastaflute.di.core.SingletonLaContainer; import org.opensearch.core.xcontent.ToXContent; import org.opensearch.core.xcontent.XContentBuilder;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 4.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.service.impl; import static org.codelibs.opensearch.runner.OpenSearchRunner.newConfigs; import java.util.UUID; import org.codelibs.fess.crawler.client.FesenClient; import org.codelibs.fess.crawler.entity.OpenSearchUrlQueue;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 5.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.service.impl; import java.util.List; import java.util.Map; import java.util.function.Consumer; import org.apache.lucene.search.TotalHits; import org.codelibs.core.beans.util.BeanUtil;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 8.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
*/ Interface a = new Impl(); Interface b = new Impl(); ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b); Object[] unused1 = set.toArray(); Object[] unused2 = set.toArray(new Object[2]); } interface Interface extends Comparable<Interface> {} static class Impl implements Interface { static int nextId; Integer id = nextId++;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 46.7K bytes - Viewed (0)