- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 2,618 for VALUE (0.02 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'search_engine.password'. <br> * The value is, e.g. <br> * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getSearchEnginePassword(); /** * Get the value for the key 'search_engine.password' as {@link Integer}. <br> * The value is, e.g. <br>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
src/main/webapp/WEB-INF/orig/view/searchOptions.jsp
styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option> <la:option value="10">10</la:option> <la:option value="20">20</la:option> <la:option value="30">30</la:option> <la:option value="40">40</la:option> <la:option value="50">50</la:option> <la:option value="100">100</la:option> </la:select> </fieldset>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchOptions.jsp
styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option> <la:option value="10">10</la:option> <la:option value="20">20</la:option> <la:option value="30">30</la:option> <la:option value="40">40</la:option> <la:option value="50">50</la:option> <la:option value="100">100</la:option> </la:select> </fieldset>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
src/builtin/builtin.go
// not a value, and the value returned is a pointer to a newly // allocated zero value of that type. func new(Type) *Type // The complex built-in function constructs a complex value from two // floating-point values. The real and imaginary parts must be of the same // size, either float32 or float64 (or assignable to them), and the return
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Apr 11 20:22:45 UTC 2024 - 12.7K bytes - Viewed (0) -
schema/utils.go
func appendSettingFromTag(tag reflect.StructTag, value string) reflect.StructTag { t := tag.Get("gorm") if strings.Contains(t, value) { return tag } return reflect.StructTag(fmt.Sprintf(`gorm:"%s;%s"`, value, t)) } // GetRelationsValues get relations's values from a reflect value func GetRelationsValues(ctx context.Context, reflectValue reflect.Value, rels []*Relationship) (reflectResults reflect.Value) { for _, rel := range rels {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Aug 19 13:35:14 UTC 2023 - 5.5K bytes - Viewed (0) -
schema/field.go
switch { case len(field.StructField.Index) == 1 && fieldIndex > 0: field.ReflectValueOf = func(ctx context.Context, value reflect.Value) reflect.Value { return reflect.Indirect(value).Field(fieldIndex) } default: field.ReflectValueOf = func(ctx context.Context, v reflect.Value) reflect.Value { v = reflect.Indirect(v) for idx, fieldIdx := range field.StructField.Index { if fieldIdx >= 0 {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 15 03:20:20 UTC 2024 - 32K bytes - Viewed (0) -
android/guava/src/com/google/common/base/MoreObjects.java
// Put types estimated to be the most frequent first. if (value instanceof CharSequence) { return ((CharSequence) value).length() == 0; } else if (value instanceof Collection) { return ((Collection<?>) value).isEmpty(); } else if (value instanceof Map) { return ((Map<?, ?>) value).isEmpty(); } else if (value instanceof Optional) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 16.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java
flushAttributes(); builder.append(value); return this; } public Ansi a(double value) { flushAttributes(); builder.append(value); return this; } public Ansi a(float value) { flushAttributes(); builder.append(value); return this; } public Ansi a(int value) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 23.1K bytes - Viewed (0) -
tests/preload_suits_test.go
t.Error(err) } want := Level3{ Value: "Bob", Level2: &Level2{ Value: "Foo", Level1s: []*Level1{ {Value: "ru"}, {Value: "en"}, }, }, } if err := DB.Save(&want).Error; err != nil { t.Error(err) } want2 := Level3{ Value: "Tom", Level2: &Level2{ Value: "Bar", Level1s: []*Level1{ {Value: "zh"}, {Value: "de"}, }, },
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Mar 18 05:38:46 UTC 2022 - 30.3K bytes - Viewed (0) -
okhttp-java-net-cookiejar/src/main/kotlin/okhttp3/java/net/cookiejar/JavaNetCookieJar.kt
} // We have either name=value or just a name. var value = if (equalsSign < pairEnd) { header.trimSubstring(equalsSign + 1, pairEnd) } else { "" } // If the value is "quoted", drop the quotes. if (value.startsWith("\"") && value.endsWith("\"") && value.length >= 2) { value = value.substring(1, value.length - 1) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:10:43 UTC 2024 - 3.8K bytes - Viewed (0)