- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 179 for nothing (0.5 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java
assertEquals(0, values.length); } try (final ResponseData responseData = s3Client.doGet("")) { fail(); } catch (CrawlerSystemException e) { // nothing } } public void test_doHead() throws Exception { try (final ResponseData responseData = s3Client.doHead("s3://fess/file1.txt")) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
protected org.codelibs.spnego.SpnegoAuthenticator authenticator = null; /** * Constructs a new SPNEGO authenticator. */ public SpnegoAuthenticator() { // do nothing } /** * Initializes the SPNEGO authenticator and registers it with the SSO manager. * This method is called automatically after dependency injection is complete. */ @PostConstructRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java
* * @see Normalizer */ public class HankakuKanaToZenkakuKana implements Normalizer { /** * Constructs a new {@link HankakuKanaToZenkakuKana}. */ public HankakuKanaToZenkakuKana() { // nothing } private static final char[] HANKAKU_KATAKANA = { '。', '「', '」', '、', '・', 'ヲ', 'ァ', 'ィ', 'ゥ', 'ェ', 'ォ', 'ャ', 'ュ', 'ョ', 'ッ', 'ー', 'ア',Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
* {@code decode_out}. */ private static class TestMessage extends DcerpcMessage { int decodedValue = 0; TestMessage() { /* nothing */ } @Override public int getOpnum() { return 0x1234; } @Override public void encode_in(NdrBuffer buf) throws NdrException {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
/** The maximum text length for language detection. */ protected int maxTextLength; /** * Default constructor. */ public LanguageHelper() { // do nothing } /** * Initializes the helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceLocatorTest.java
} else { this.host = remaining.substring(0, slashIndex); this.path = remaining.substring(slashIndex); } // canonical form: remove . and .. but nothing fancy this.canonical = urlStr.replace("..", "").replace(".", ""); } @Override public String getName() { if (path == null || path.isEmpty() || path.equals("/")) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
*/ public class LabelTypePager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public LabelTypePager() { // do nothing } /** The default page size. */ public static final int DEFAULT_PAGE_SIZE = 20; /** The default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
*/ public class CurlResponse implements Closeable { /** * Constructs a new CurlResponse. */ public CurlResponse() { // nothing } /** * The HTTP status code of the response. */ private int httpStatusCode; /** * The content cache that stores the response content. */Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
* Volatile to ensure visibility across threads. */ protected volatile boolean alive = true; /** * Default constructor. */ public AbstractDataStore() { // nothing } /** * Register this data store. */ public void register() { ComponentUtil.getDataStoreFactory().add(getName(), this); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/LogStreamTest.java
// Test that default level is 1 assertEquals(1, LogStream.level); } @Test void testLevelValuesDocumentation() { // Test various level values as documented // 0 - nothing LogStream.setLevel(0); assertEquals(0, LogStream.level); // 1 - critical [default] LogStream.setLevel(1); assertEquals(1, LogStream.level);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.3K bytes - Viewed (0)