- Sort Score
- Num 10 results
- Language All
Results 501 - 510 of 6,884 for isString (0.38 seconds)
-
guava/src/com/google/common/base/Enums.java
checkNotNull(enumClass); checkNotNull(value); return Platform.getEnumIfPresent(enumClass, value); } private static final Map<Class<? extends Enum<?>>, Map<String, WeakReference<? extends Enum<?>>>> enumConstantCache = new WeakHashMap<>(); private static <T extends Enum<T>> Map<String, WeakReference<? extends Enum<?>>> populateCache(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 01 13:41:58 GMT 2025 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
// Execute the job String result = aggregateLogJob.execute(); // Verify result is empty string on success assertNotNull(result); assertEquals("", result); } @Test public void test_execute_withException() { // Setup mock SearchLogHelper that throws exception final String errorMessage = "Test exception occurred";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/ErrorReportingTestListener.java
*/ public static class Descriptor { private final String name; private final String className; private final String parent; private Descriptor(String name, String className, String parent) { this.name = name; this.className = className; this.parent = parent; }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 10.7K bytes - Click Count (0) -
tests/query_test.go
t.Fatalf("Build NOT condition, but got %v", result.Statement.SQL.String()) } result = dryDB.Not(map[string]interface{}{"name": []string{}}).Find(&User{}) if !regexp.MustCompile("SELECT \\* FROM .*users.* WHERE .*name.* IS NOT NULL").MatchString(result.Statement.SQL.String()) { t.Fatalf("Build NOT condition, but got %v", result.Statement.SQL.String()) }
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Tue Jul 22 06:21:04 GMT 2025 - 51K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponseTest.java
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Thu Nov 13 00:40:54 GMT 2025 - 5.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterIndexLifecycleTest.java
suggester.createIndexIfNothing(); // Index some data String[][] readings = new String[1][]; readings[0] = new String[] { "test" }; SuggestItem item = new SuggestItem(new String[] { "ใในใ" }, readings, new String[] { "content" }, 1, 0, -1, new String[] { "tag1" }, new String[] { SuggestConstants.DEFAULT_ROLE }, null, SuggestItem.Kind.DOCUMENT);
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 13.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/eventbus/StringCatcher.java
* to call ({@link #methodWithoutAnnotation(String)}). * * @author Cliff Biffle */ @NullUnmarked public class StringCatcher { private final List<String> events = new ArrayList<>(); @Subscribe public void hereHaveAString(@Nullable String string) { events.add(string); } public void methodWithoutAnnotation(@Nullable String string) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 1.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantProgressLogger.java
public class VagrantProgressLogger implements UnaryOperator<String> { private static final String HEADING_PREFIX = "==> "; private final String squashedPrefix; private String lastLine = ""; private String heading = ""; private boolean inProgressReport = false; public VagrantProgressLogger(String squashedPrefix) { this.squashedPrefix = squashedPrefix; }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.8K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
@Override @Nullable String chop(String str) { String result = i.chop(str); return result != null ? result : you.chop(str); } }; } abstract @Nullable String chop(String str); static Chopper suffix(String suffix) { return new Chopper() { @Override @Nullable String chop(String str) { if (str.endsWith(suffix)) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Apr 02 14:49:41 GMT 2026 - 17.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
/** homePhone */ protected String homePhone; /** homePostalAddress */ protected String homePostalAddress; /** initials */ protected String initials; /** internationaliSDNNumber */ protected String internationaliSDNNumber; /** labeledURI */ protected String labeledURI; /** mail */ protected String mail; /** mobile */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 22.9K bytes - Click Count (0)