- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 2,243 for _value (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java
} public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public Integer getMaxSize() { checkSpecifiedProperty("maxSize"); return maxSize; } public void setMaxSize(Integer value) { registerModifiedProperty("maxSize"); this.maxSize = value; } public String getQuery() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/ParamMap.java
public boolean containsValue(final Object value) { return parent.containsValue(value); } @Override public V get(final Object key) { final V value = parent.get(key); if (value != null) { return value; } return parent.get(toCamelCase(key)); } @Override public V put(final K key, final V value) { return parent.put(key, value);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFailureUrl.java
} public void setConfigId(String value) { registerModifiedProperty("configId"); this.configId = value; } public Integer getErrorCount() { checkSpecifiedProperty("errorCount"); return errorCount; } public void setErrorCount(Integer value) { registerModifiedProperty("errorCount"); this.errorCount = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelState.java
/** * Channel is being closed */ CLOSING(7); private final int value; ChannelState(int value) { this.value = value; } /** * Get the numeric value of this state * * @return state value */ public int getValue() { return value; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
@Override public boolean isValid(final String value, final ConstraintValidatorContext context) { if (StringUtil.isNotBlank(value)) { return check(protocols, value); } return true; } /** * Checks if the given value matches any of the specified protocols. * * @param protocols the allowed protocols * @param value the URI string to validate
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/FieldUtil.java
} } /** * Sets the value of the given {@link Field} representing a {@code static} field to the specified new value. * * @param field the field (must not be {@literal null}) * @param value the new value for the {@literal static} field * @throws IllegalAccessRuntimeException if the field cannot be accessed
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
* * @param value the value whose presence in this map is to be tested * @return true if this map maps one or more keys to the specified value */ @Override public boolean containsValue(final Object value) { return parent.containsValue(value); } /** * Returns the value to which the specified key is mapped. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
* * @param value the integer value to convert * @param length the desired length of the hex string * @return the hexadecimal string representation */ public static String bin_to_hex(int value, final int length) { final char[] arr = new char[length]; int ai = arr.length; while (ai-- > 0) { arr[ai] = HEXCHARS[value & 0xF]; value >>>= 4; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRelatedContent.java
public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public Integer getSortOrder() { checkSpecifiedProperty("sortOrder"); return sortOrder; } public void setSortOrder(Integer value) { registerModifiedProperty("sortOrder"); this.sortOrder = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Chars.java
*/ @InlineMe(replacement = "Character.hashCode(value)") @InlineMeValidationDisabled( "The hash code of a char is the int version of the char itself, so it's simplest to return" + " that.") public static int hashCode(char value) { return value; } /** * Returns the {@code char} value that is equal to {@code value}, if possible. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.2K bytes - Viewed (0)