- Sort Score
- Result 10 results
- Languages All
Results 2431 - 2440 of 5,931 for publish (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
UnaryOperator<String> interpolationSource; public SettingsBuilderRequestBuilder session(ProtoSession session) { this.session = session; return this; } public SettingsBuilderRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/ITBase.java
import io.restassured.specification.RequestSpecification; public class ITBase { private static final Logger logger = LogManager.getLogger(ITBase.class); public static final String DEFAULT_FESS_URL = "http://localhost:8080"; public static final String DEFAULT_SEARCH_ENGINE_URL = "http://localhost:9200"; public static final String DEFAULT_TEST_TOKEN = "E44TjYrJQadtGBFFuECA0SBqqVtqj7lRGmhYep53ixNdvlRxnkhwqCVCpRoO";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static CachedCipher getCipher(final String cipherName) { return getComponent(cipherName); } /** * Gets the system properties. * @return The dynamic properties. */ public static DynamicProperties getSystemProperties() { return getComponent(CRAWLER_PROPERTIES); } /** * Gets the system helper component.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/AbstractConfigHelperTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class AbstractConfigHelperTest extends UnitFessTestCase { private TestConfigHelper configHelper; @Override public void setUp() throws Exception { super.setUp(); configHelper = new TestConfigHelper(); } public void test_setReloadInterval() { assertEquals(1000L, configHelper.reloadInterval);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 00:03:47 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableRangeSetTest.java
@GwtIncompatible // ImmutableRangeSet @NullUnmarked public class ImmutableRangeSetTest extends AbstractRangeSetTest { @AndroidIncompatible // test-suite builders static final class ImmutableRangeSetIntegerAsSetGenerator implements TestSetGenerator<Integer> { @Override public SampleElements<Integer> samples() { return new SampleElements<>(1, 4, 3, 2, 5); } @Override public Integer[] createArray(int length) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 25 16:19:30 UTC 2025 - 21.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java
* This builder provides methods to set various parameters for the request. */ public class PopularWordsRequestBuilder extends RequestBuilder<PopularWordsRequest, PopularWordsResponse> { /** * Constructor for PopularWordsRequestBuilder. * @param client The OpenSearch client. */ public PopularWordsRequestBuilder(final Client client) { super(client, new PopularWordsRequest()); }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FessCrawlerConfig.java
*/ public class FessCrawlerConfig extends OpenSearchCrawlerConfig { /** * Default constructor. */ public FessCrawlerConfig() { super(); } /** * Gets the name of the queue index for the crawler. * * @return the queue index name */ @Override public String getQueueIndex() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/CreateForm.java
/** * The create form for managing related content. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** * The CRUD operation mode (create, update, etc.). */ @ValidateTypeFailure public Integer crudMode; /** * The search term for which related content is shown. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/AbstractCacheTest.java
* * @author Charles Fry */ @NullUnmarked public class AbstractCacheTest extends TestCase { public void testGetIfPresent() { AtomicReference<Object> valueRef = new AtomicReference<>(); Cache<Object, Object> cache = new AbstractCache<Object, Object>() { @Override public @Nullable Object getIfPresent(Object key) { return valueRef.get(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultimapGetTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class MultimapGetTester<K, V> extends AbstractMultimapTester<K, V, Multimap<K, V>> { public void testGetEmpty() { Collection<V> result = multimap().get(k3()); assertEmpty(result); assertEquals(0, result.size()); } @CollectionSize.Require(absent = ZERO) public void testGetNonEmpty() { Collection<V> result = multimap().get(k0());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 5.7K bytes - Viewed (0)