- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 4,706 for isString (1.28 sec)
-
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
OptionalThing<FessUserBean> createUser(String name, String[] permissions) { return OptionalThing.of(new FessUserBean(new TestUser(name, permissions))); } static class TestUser implements FessUser { private static final long serialVersionUID = 1L; private String name; private String[] permissions; TestUser(String name, String[] permissions) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
private static final Logger logger = LogManager.getLogger(OsddHelper.class); /** The OSDD file path. */ protected String osddPath; /** The encoding for OSDD file. */ protected String encoding = Constants.UTF_8; /** The content type for OSDD response. */ protected String contentType = "text/xml"; // "application/opensearchdescription+xml" /** The OSDD file. */ protected File osddFile;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
} /** * Returns the native LAN Manager string reported by the server. * * @return the nativeLanMan */ public final String getNativeLanMan() { return this.nativeLanMan; } /** * Returns the native operating system string reported by the server. * * @return the nativeOs */ public final String getNativeOs() { return this.nativeOs; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
tests/preload_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Jun 12 10:00:47 UTC 2024 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java
/** accessType */ protected String accessType; /** clientIp */ protected String clientIp; /** hitCount */ protected Long hitCount; /** hitCountRelation */ protected String hitCountRelation; /** languages */ protected String languages; /** queryId */ protected String queryId; /** queryOffset */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
String message = ""; StorageException exception = new StorageException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithMessageAndNullCause() { // Test constructor with message and null cause String message = "Storage error";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
String url = "http://test.com"; String result = helper.convert(url); assertNotNull(result); assertNotNull(helper.duplicateHostList); } public void test_convert_emptyList() { DuplicateHostHelper helper = new DuplicateHostHelper(); helper.duplicateHostList = new ArrayList<>(); String url = "http://test.com";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
} final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class); if (url == null) { saveError(messages -> messages.addErrorsDocumentNotFound(GLOBAL, form.docId)); return redirect(ErrorAction.class); } if (fessConfig.isSearchLog()) { final String userSessionId = userInfoHelper.getUserCode();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
tests/embedded_struct_test.go
) func TestEmbeddedStruct(t *testing.T) { type ReadOnly struct { ReadOnly *bool } type BasePost struct { Id int64 Title string URL string ReadOnly } type Author struct { ID string Name string Email string } type HNPost struct { BasePost Author `gorm:"EmbeddedPrefix:user_"` // Embedded struct Upvotes int32 } type EngadgetPost struct {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 7.3K bytes - Viewed (0)