- Sort Score
- Result 10 results
- Languages All
Results 3821 - 3830 of 5,931 for publish (0.06 sec)
-
src/main/java/org/codelibs/fess/suggest/exception/SuggesterException.java
* </pre> * * @see RuntimeException */ public class SuggesterException extends RuntimeException { private static final long serialVersionUID = 1L; /** * Constructs a new SuggesterException with the specified detail message. * @param msg The detail message. */ public SuggesterException(final String msg) { super(msg); } /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
/** * Admin action for File Config management. * */ public class AdminFileconfigAction extends FessAdminAction { /** * Default constructor. */ public AdminFileconfigAction() { super(); } /** The role name for file configuration administration. */ public static final String ROLE = "admin-fileconfig"; /** Logger for this class. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/BasicFileInformationTest.java
public long getLastAccessTime() { return 777L; } @Override public long getSize() { return 666L; } @Override public byte getFileInformationLevel() { return FileInformation.FILE_STANDARD_INFO; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java
*/ public ExtractorBuilder mimeType(final String mimeType) { this.mimeType = mimeType; return this; } /** * Sets the filename of the content to extract. * * @param filename the filename to set * @return this builder instance for method chaining */ public ExtractorBuilder filename(final String filename) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapForEachTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") @IgnoreJRERequirement // We opt into library desugaring for our tests. public class MapForEachTester<K, V> extends AbstractMapTester<K, V> { @CollectionFeature.Require(KNOWN_ORDER) public void testForEachKnownOrder() { List<Entry<K, V>> entries = new ArrayList<>(); getMap().forEach((k, v) -> entries.add(entry(k, v)));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 3.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java
* * <p>This testing utility is not thread-safe. * * @author Kevin Bourrillion */ @GwtCompatible public final class MinimalIterable<E extends @Nullable Object> implements Iterable<E> { /** Returns an iterable whose iterator returns the given elements in order. */ public static <E extends @Nullable Object> MinimalIterable<E> of(E... elements) { // Make sure to get an unmodifiable iterator
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/ByteConversionUtil.java
* * @author higa */ public abstract class ByteConversionUtil { /** * Do not instantiate. */ protected ByteConversionUtil() { } /** * Converts to {@link Byte}. * * @param o * The object to convert * @return The converted {@link Byte} */ public static Byte toByte(final Object o) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java
* } * </pre> * */ public class IdnDnsResolver implements DnsResolver { /** Flag for IDN conversion. */ protected int flag = 0; /** Encoding for URL decoding. */ protected String encoding = "UTF-8"; /** * Creates a new IdnDnsResolver instance with default settings. */ public IdnDnsResolver() { super(); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
import jakarta.annotation.Resource; /** * Admin action for System Info. * */ public class AdminSysteminfoAction extends FessAdminAction { /** * Default constructor. */ public AdminSysteminfoAction() { super(); } /** Role name for admin system info operations */ public static final String ROLE = "admin-systeminfo";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java
import org.codelibs.fess.crawler.entity.ExtractData; import org.codelibs.fess.crawler.exception.ExecutionTimeoutException; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class CommandExtractorTest extends PlainTestCase { private File createScriptTempFile(final int sleep) { String extention; String content; if (File.separator.equals("/")) { // Unix
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 9.8K bytes - Viewed (0)