- Sort Score
- Result 10 results
- Languages All
Results 1181 - 1190 of 5,847 for stringy (0.1 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
public String includedPaths; @CustomSize(maxKey = "form.admin.max.input.size") public String excludedPaths; @CustomSize(maxKey = "form.admin.max.input.size") public String includedDocPaths; @CustomSize(maxKey = "form.admin.max.input.size") public String excludedDocPaths; @CustomSize(maxKey = "form.admin.max.input.size") public String configParameter; @Min(value = 0)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Cookie.kt
*/ @Suppress("NAME_SHADOWING") class Cookie private constructor( /** Returns a non-empty string with this cookie's name. */ @get:JvmName("name") val name: String, /** Returns a possibly-empty string with this cookie's value. */ @get:JvmName("value") val value: String, /** * Returns the time that this cookie expires, in the same format as [System.currentTimeMillis].
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:12:05 UTC 2024 - 23.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 Nov 03 09:35:10 UTC 2024 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/ITBase.java
public static final String DEFAULT_FESS_URL = "http://localhost:8080"; public static final String DEFAULT_SEARCH_ENGINE_URL = "http://localhost:9200"; public static final String DEFAULT_TEST_TOKEN = "E44TjYrJQadtGBFFuECA0SBqqVtqj7lRGmhYep53ixNdvlRxnkhwqCVCpRoO"; public static final String DEFAULT_TEST_TOKEN_ID = "testToken"; private static final String TEST_TOKEN = "test.token";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
internal/config/compress/compress_test.go
testCases := []struct { str string expectedPatterns []string success bool }{ // invalid input {",,,", []string{}, false}, {"", []string{}, false}, {",", []string{}, false}, {"/", []string{}, false}, {"text/*,/", []string{}, false}, // valid input {".txt,.log", []string{".txt", ".log"}, true}, {"text/*,application/json", []string{"text/*", "application/json"}, true}, }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceBundleUtil.java
* @return {@link Map} */ public static final Map<String, String> convertMap(final ResourceBundle bundle) { assertArgumentNotNull("bundle", bundle); final Map<String, String> ret = newHashMap(); for (final Enumeration<String> e = bundle.getKeys(); e.hasMoreElements();) { final String key = e.nextElement(); final String value = bundle.getString(key); ret.put(key, value);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/merge/MavenSettingsMerger.java
*/ public void merge(Settings dominant, Settings recessive, String recessiveSourceLevel) { if (dominant == null || recessive == null) { return; } recessive.setSourceLevel(recessiveSourceLevel); List<String> dominantActiveProfiles = dominant.getActiveProfiles(); List<String> recessiveActiveProfiles = recessive.getActiveProfiles();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
public List<Map<String, Object>> documentItems; public String pageSize; public String currentPageNumber; public String allRecordCount; public String allPageCount; public boolean existNextPage; public boolean existPrevPage; public String currentStartRecordNumber; public String currentEndRecordNumber;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 09:03:45 UTC 2024 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
public Object get(final Object key) { return getProperties().get(key); } @Override public String getProperty(final String key, final String defaultValue) { return getProperties().getProperty(key, defaultValue); } @Override public String getProperty(final String key) { return getProperties().getProperty(key); } @Override public int hashCode() {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.6K bytes - Viewed (0) -
internal/crypto/sse-c.go
// metadata map if metadata is nil. func (ssec) CreateMetadata(metadata map[string]string, sealedKey SealedKey) map[string]string { if sealedKey.Algorithm != SealAlgorithm { logger.CriticalIf(context.Background(), Errorf("The seal algorithm '%s' is invalid for SSE-C", sealedKey.Algorithm)) } if metadata == nil { metadata = make(map[string]string, 3) } metadata[MetaAlgorithm] = SealAlgorithm
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 5.2K bytes - Viewed (0)