- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 2,028 for A_value (0.04 sec)
-
src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java
assertEquals("", value); value = FessFunctions.maskEmail("aaa bbb ccc"); assertEquals("aaa bbb ccc", value); value = FessFunctions.maskEmail("******@****.***"); assertEquals("******@****.***", value); value = FessFunctions.maskEmail("******@****.***"); assertEquals("******@****.***", value); value = FessFunctions.maskEmail("111 ******@****.*** 222");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
registerModifiedProperty("departmentNumber"); this.departmentNumber = value; } public String getDescription() { checkSpecifiedProperty("description"); return convertEmptyToNull(description); } public void setDescription(String value) { registerModifiedProperty("description"); this.description = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrSmallTest.java
// Test with a value within the byte range NdrSmall ndrSmall = new NdrSmall(123); assertEquals(123, ndrSmall.value, "Value should be initialized correctly for valid input."); } @Test void testConstructor_maxValue() { // Test with the maximum byte value NdrSmall ndrSmall = new NdrSmall(255);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple3.java
* @param <T1> * The type of the first value * @param <T2> * The type of the second value * @param <T3> * The type of the third value */ public class Tuple3<T1, T2, T3> { /** The first value */ protected T1 value1; /** The second value */ protected T2 value2; /** The third value */ protected T3 value3; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java
public void setQueryId(String value) { registerModifiedProperty("queryId"); this.queryId = value; } public Integer getQueryOffset() { checkSpecifiedProperty("queryOffset"); return queryOffset; } public void setQueryOffset(Integer value) { registerModifiedProperty("queryOffset"); this.queryOffset = value; }
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/main/java/jcifs/internal/smb2/persistent/HandleType.java
*/ PERSISTENT(3); private final int value; HandleType(int value) { this.value = value; } /** * Get the numeric value of this handle type * @return the numeric value */ public int getValue() { return value; } /** * Get HandleType from numeric value * @param value the numeric value * @return the corresponding HandleType */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsJobLog.java
} public void setEndTime(Long value) { registerModifiedProperty("endTime"); this.endTime = value; } public String getJobName() { checkSpecifiedProperty("jobName"); return convertEmptyToNull(jobName); } public void setJobName(String value) { registerModifiedProperty("jobName"); this.jobName = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SingleValueIterator.java
* @param <E> the element type * @param value the single value returned by the iterator * @return an {@link Iterable} wrapping a {@link SingleValueIterator} */ public static <E> Iterable<E> iterable(final E value) { return () -> new SingleValueIterator<>(value); } /** * Constructs an instance. * * @param value the single value returned by the iterator */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsElevateWord.java
return boost; } public void setBoost(Float value) { registerModifiedProperty("boost"); this.boost = value; } public String getCreatedBy() { checkSpecifiedProperty("createdBy"); return convertEmptyToNull(createdBy); } public void setCreatedBy(String value) { registerModifiedProperty("createdBy"); this.createdBy = 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) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0)