- Sort Score
- Result 10 results
- Languages All
Results 3171 - 3180 of 5,931 for publish (0.11 sec)
-
android/guava-tests/test/com/google/common/io/TestCharSource.java
* * @author Colin Decker */ @NullUnmarked public class TestCharSource extends CharSource implements TestStreamSupplier { private final TestByteSource byteSource; public TestCharSource(String content, TestOption... options) { this.byteSource = new TestByteSource(content.getBytes(UTF_8), options); } @Override public boolean wasStreamOpened() { return byteSource.wasStreamOpened(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalStateException.java
/** * Exception that wraps {@link IllegalStateException}. * * @author wyukawa */ public class ClIllegalStateException extends IllegalStateException { private static final long serialVersionUID = -2154525994315946504L; /** * Creates a {@link ClIllegalStateException}. */ public ClIllegalStateException() { super(); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java
/** * Admin action for Failure URL management. * */ public class AdminFailureurlAction extends FessAdminAction { /** * Default constructor. */ public AdminFailureurlAction() { super(); } /** * Role name for failure URL administration. */ public static final String ROLE = "admin-failureurl";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
import jakarta.annotation.Resource; /** * Admin action for Job Log. * */ public class AdminJoblogAction extends FessAdminAction { /** * Default constructor. */ public AdminJoblogAction() { super(); } /** The role name for job log administration. */ public static final String ROLE = "admin-joblog";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; public class FessFileTransformerTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); ComponentUtil.register(new DataSerializer(), "dataSerializer"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
* and default operator. It also allows adding custom filters to modify query behavior.</p> * */ public class QueryParser { /** * Default constructor. */ public QueryParser() { // Default constructor } /** The default field to search in when no field is specified in the query */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
*/ public String execute(final JobExecutor jobExecutor) { jobExecutor(jobExecutor); return execute(); } /** * Sets the job executor for this job. * * @param jobExecutor the job executor to set * @return this ExecJob instance for method chaining */ public ExecJob jobExecutor(final JobExecutor jobExecutor) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java
public void testSize_populated() { for (LoadingCache<Object, Object> cache : caches()) { // don't let the entries get GCed List<Entry<Object, Object>> unused = warmUp(cache); assertEquals(WARMUP_SIZE, cache.size()); assertMapSize(cache.asMap(), WARMUP_SIZE); checkValidState(cache); } } public void testContainsKey_found() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
import org.apache.lucene.util.UnicodeUtil; import org.apache.lucene.util.fst.FST; // https://issues.apache.org/jira/browse/LUCENE-5252 public final class NGramSynonymTokenizer extends Tokenizer { public static final int DEFAULT_N_SIZE = 2; public static final String DEFAULT_DELIMITERS = " \t\n\r"; static final int BUFFER_SIZE = 4096; private final int n;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0) -
android/guava/src/com/google/common/io/ByteSink.java
* @author Colin Decker */ @J2ktIncompatible @GwtIncompatible public abstract class ByteSink { /** Constructor for use by subclasses. */ protected ByteSink() {} /** * Returns a {@link CharSink} view of this {@code ByteSink} that writes characters to this sink as * bytes encoded with the given {@link Charset charset}. */ public CharSink asCharSink(Charset charset) { return new AsCharSink(charset); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 4.9K bytes - Viewed (0)