- Sort Score
- Result 10 results
- Languages All
Results 1211 - 1220 of 3,439 for During (1.35 sec)
-
src/main/java/org/codelibs/fess/util/DocumentUtil.java
final List<String> list = new ArrayList<>(); Collections.addAll(list, (String[]) value); return (T) list; } if (((String[]) value).length == 0) { return null; } return convertObj(((String[]) value)[0], clazz); } return convertObj(value, clazz); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
tests/test_openapi_separate_input_output_schemas.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
return buffer.toString(); } /** * Decodes the supplied Base-64 encoded string. * * @param string The Base-64 encoded string that is to be decoded. * @return A <code>byte[]</code> containing the decoded data block. */ public static byte[] decode(final String string) { final int length = string.length(); if (length == 0) { return new byte[0]; }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
tests/test_tutorial/test_path_params_numeric_validations/test_tutorial001.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 10:43:02 UTC 2025 - 5.6K bytes - Viewed (0) -
tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
* @param activeProjectSelectors A {@link List} of project selectors that must be activated. * @deprecated Use {@link #activateOptionalProject(String)} or {@link #activateRequiredProject(String)} instead. */ @Deprecated public void overwriteActiveProjects(List<String> activeProjectSelectors) { List<ProjectActivationSettings> projects = getProjects(pa -> pa.active()).toList();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 7.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jLogger.java
private final String projectId; public Slf4jLogger(org.slf4j.Logger logger) { this.logger = logger; this.projectId = ProjectBuildLogAppender.getProjectId(); } @Override public void debug(String message) { setMdc(); logger.debug(message); } @Override public void debug(String message, Throwable throwable) { setMdc();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 3.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java
} } @Override public Map<String, Lifecycle> getLifecycles() { initLifecycleMap(); return lifecycleMap; } @Deprecated @Override public List<String> getOptionalMojos(String lifecycle) { return null; } private Map<String, LifecyclePhase> getLifecyclePhases(String lifecycle) { initLifecycleMap();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKanaTest.java
HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana(); String result = normalizer.normalize("アイウエオ", "field"); assertEquals("アイウエオ", result); } @Test public void test_voicedSounds() throws Exception { HankakuKanaToZenkakuKana normalizer = new HankakuKanaToZenkakuKana(); String result = normalizer.normalize("ガギグゲゴ", "field");
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
* If no queries exist, creates a new array with the provided query. * * @param s the query string to add as a facet */ public void addQuery(final String s) { if (query == null) { query = new String[] { s }; } else { final String[] newQuery = Arrays.copyOf(query, query.length + 1); newQuery[query.length] = s; query = newQuery;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.3K bytes - Viewed (0)