- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 956 for myvalue (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
* @author codelibs * @author Shunji Makino */ public class CreateForm { @ValidateTypeFailure public Integer crudMode; @Size(max = 100) public String hostname; @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer port; @Size(max = 100) public String authRealm; @Size(max = 10) public String protocolScheme; @Required
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java
* @author Keiichi Watanabe */ public class CreateForm { @ValidateTypeFailure public Integer crudMode; @Size(max = 100) public String hostname; @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer port; @Size(max = 10) public String protocolScheme; @Required @Size(max = 100) public String username;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java
@Required @Size(max = 100) public String term; @Required @CustomSize(maxKey = "form.admin.max.input.size") public String query; @Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer maxSize; @Required @ValidateTypeFailure public Float boost; @Size(max = 1000) public String virtualHost;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
private static final String WEB_API_EXCEPTION = "webApiException"; private WebApiUtil() { } public static void setObject(final String name, final Object value) { LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(name, value)); } @SuppressWarnings("unchecked") public static <T> T getObject(final String name) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMap.java
Entry<K, V> entry = requireNonNull(entryArray[i]); Object key = entry.getKey(); Object value = entry.getValue(); checkEntryNotNull(key, value); keys[i] = key; values[i] = value; } } else { // Need to sort and check for nulls and dupes.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} /* Although this looks wrong in terms of order Commons CLI stores the value of options in * an array and when a value is potentionally overriden it is added to the array. The single * arg option value is retrieved and instead of returning values[values.length-1] it returns * values[0] which means that the original value instead of the overridden one is returned
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
cmd/bucket-lifecycle.go
KMSKeyID string `xml:"KMSKeyId,omitempty"` } // MetadataEntry denotes name and value. type MetadataEntry struct { Name string `xml:"Name"` Value string `xml:"Value"` } // S3Location specifies s3 location that receives result of a restore object request type S3Location struct { BucketName string `xml:"BucketName,omitempty"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 23 15:35:37 UTC 2024 - 33.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java
builder.put("key", "value"); assertThat(builder.build().entries()).containsExactly(Maps.immutableEntry("key", "value")); } public void testBuilderWithExpectedKeysPositive() { ImmutableListMultimap.Builder<String, String> builder = ImmutableListMultimap.builderWithExpectedKeys(1); builder.put("key", "value");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 23.8K bytes - Viewed (0) -
cmd/signature-v4_test.go
query := url.Values{} for key, value := range testCase.queryParams { query.Set(key, value) } // Create a request to use. req, e := http.NewRequest(http.MethodGet, "http://host/a/b?"+query.Encode(), nil) if e != nil { t.Errorf("(%d) failed to create http.Request, got %v", i, e) } // Do the same for the headers. for key, value := range testCase.headers { req.Header.Set(key, value)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 10.5K bytes - Viewed (0) -
compat/maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Reader.java
public interface ContentTransformer { /** * Interpolate the value read from the xpp3 document * @param source The source value * @param fieldName A description of the field being interpolated. The implementation may use this to * log stuff. * @return The interpolated value. */ String transform(String source, String fieldName); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0)