- Sort Score
- Result 10 results
- Languages All
Results 1431 - 1440 of 5,086 for Strings (0.04 sec)
-
src/main/java/org/codelibs/core/collection/CaseInsensitiveSet.java
import java.util.Set; /** * {@link Set} that is case-insensitive. * * @author higa */ public class CaseInsensitiveSet extends AbstractSet<String> implements Set<String>, Serializable { static final long serialVersionUID = 0L; private transient Map<String, Object> map = new CaseInsensitiveMap<>(); private static final Object PRESENT = new Object(); /** * Creates a {@link CaseInsensitiveSet}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayIteratorTest.java
*/ @Rule public ExpectedException exception = ExpectedException.none(); /** * */ @Test public void testNext() { final ArrayIterator<String> itr = new ArrayIterator<String>("a", "b", "c"); assertThat(itr.next(), equalTo("a")); assertThat(itr.next(), equalTo("b")); assertThat(itr.next(), equalTo("c")); } /** * */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Role.java
public String toString() { return "Role [name=" + name + "]"; } public Map<String, String> getAttributes() { return attributes; } public void setAttributes(final Map<String, String> attributes) { this.attributes = attributes; } @Override public Map<String, Object> toSource() { final Map<String, Object> sourceMap = new HashMap<>(); if (name != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java
// nothing } private String index = null; private int size = 10; private final List<String> tags = new ArrayList<>(); private final List<String> roles = new ArrayList<>(); private final List<String> fields = new ArrayList<>(); private final List<String> languages = new ArrayList<>(); private String seed = String.valueOf(System.currentTimeMillis());
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 9.2K bytes - Viewed (0) -
tests/lru_test.go
func TestLRU_Values(t *testing.T) { lc := lru.NewLRU[string, string](3, nil, 0) lc.Add("key1", "val1") lc.Add("key2", "val2") lc.Add("key3", "val3") values := lc.Values() if !reflect.DeepEqual(values, []string{"val1", "val2", "val3"}) { t.Fatalf("values differs from expected") } } // func TestExpirableMultipleClose(_ *testing.T) { // lc :=lru.NewLRU[string, string](10, nil, 0) // lc.Close()
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
String message = ""; ThemeException exception = new ThemeException(message); assertNotNull(exception); assertEquals("", exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithMessageAndNullCause() { // Test constructor with message and null cause String message = "Theme uninstallation failed";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CharSequenceReaderTest.java
} public void testMarkAndReset() throws IOException { String string = "abcdefghijklmnopqrstuvwxyz"; CharSequenceReader reader = new CharSequenceReader(string); assertTrue(reader.markSupported()); assertEquals(string, readFully(reader)); assertFullyRead(reader); // reset and read again reader.reset(); assertEquals(string, readFully(reader)); assertFullyRead(reader);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbException.java
} private final int errorCode; private final Severity severity; private final Category category; private final Map<String, Object> context; private final long timestamp; private String recoveryHint; /** * Creates an SMB exception with detailed context * * @param message the error message * @param errorCode the SMB error code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 6.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
*/ public static final String TIKA_TESSERACT_CONFIG = "tika.tesseract.config"; /** * PDF config file path. */ public static final String TIKA_PDF_CONFIG = "tika.pdf.config"; /** * A parameter key to normalize a text. */ public static final String NORMALIZE_TEXT = "normalize_text"; private static final String FILE_PASSWORD = "fess.file.password";
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.7K bytes - Viewed (0)