- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for Tuple4 (0.23 sec)
-
src/main/java/org/codelibs/core/misc/Tuple4.java
* @param value4 * The fourth value * @return A tuple of four values */ public static <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4> tuple4(final T1 value1, final T2 value2, final T3 value3, final T4 value4) { return new Tuple4<>(value1, value2, value3, value4); } /** * Constructs an instance. */ public Tuple4() { } /** * Constructs an instance. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
if (subValues.length == 3) { return new Tuple4<>(values[0], subValues[0], subValues[1], subValues[2]); } if (subValues.length == 2) { return new Tuple4<>(values[0], subValues[0], subValues[1], StringUtil.EMPTY); } return new Tuple4<>(values[0], values[1], Constants.MAPPING_TYPE_ARRAY, StringUtil.EMPTY);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple5.java
* The fifth value * @return A tuple of five values */ public static <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5> tuple5(final T1 value1, final T2 value2, final T3 value3, final T4 value4, final T5 value5) { return new Tuple5<>(value1, value2, value3, value4, value5); } /** * Constructs an instance. */ public Tuple5() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple3.java
* @param value3 * The third value * @return A tuple of three values */ public static <T1, T2, T3> Tuple3<T1, T2, T3> tuple3(final T1 value1, final T2 value2, final T3 value3) { return new Tuple3<>(value1, value2, value3); } /** * Constructs an instance. */ public Tuple3() { } /** * Constructs an instance. *
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/thumbnail/ThumbnailGenerator.java
/** * Creates a thumbnail generation task. * @param path The path to the source document. * @param docMap The document map containing metadata. * @return A tuple containing task information. */ Tuple3<String, String, String> createTask(String path, Map<String, Object> docMap);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Tuple3<String, String, String> task = thumbnailGenerator.createTask(null, docMap); assertNull(task); } public void test_createTask_withEmptyPath() { // Test task creation with empty path Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", "application/pdf");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
final Tuple3<String, String, String> task = new Tuple3<>(getName(), thumbnailId, path); if (logger.isDebugEnabled()) { logger.debug("Create thumbnail task: {}", task); } return task; } /** * Generates a thumbnail image and saves it to the specified output file. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ protected final List<ThumbnailGenerator> generatorList = new ArrayList<>(); /** * Queue for thumbnail generation tasks containing URL, content, and path tuples. */ protected BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue; /** * Flag indicating whether thumbnail generation is currently in progress. */ protected volatile boolean generating;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
private static final long serialVersionUID = 1L; @Override public Tuple3<String, String, String>[] getVirtualHosts() { return new Tuple3[] { new Tuple3<>("Host", "example.com", "site1"), new Tuple3<>("X-Forwarded-Host", "test.com", "site2"), new Tuple3<>("Custom-Header", "custom.value", "site3") }; } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0)