- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 346 for mancher (0.03 sec)
-
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for Kuromoji. */ public class KuromojiService { /** The dictionary manager. */ @Resource protected DictionaryManager dictionaryManager; /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.it.admin; import static org.hamcrest.Matchers.equalTo; import java.util.HashMap; import java.util.List; import java.util.Map; import org.codelibs.fess.it.CrudTestBase; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java
assertNotNull(id1); assertNotNull(id2); assertNotSame(id1, id2); assertEquals(32, id1.length()); assertEquals(32, id2.length()); assertTrue(id1.matches("[0-9a-f]+")); assertTrue(id2.matches("[0-9a-f]+")); } public void test_storeQueryId() { UserInfoHelper userInfoHelper = new UserInfoHelper(); MockletHttpServletRequest request = getMockRequest();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.it; import static io.restassured.RestAssured.given; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.startsWith; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.HashMap; import java.util.List;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
gradle/libs.versions.toml
#noinspection UnusedVersionCatalogEntry junit-platform-console = { module = "org.junit.platform:junit-platform-console", version.ref = "junit-platform" } #noinspection UnusedVersionCatalogEntry junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform" } junit-vintage-engine = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "org-junit-jupiter" } #noinspection NewerVersionAvailable
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Aug 31 17:41:20 UTC 2025 - 8.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
- kube-controller-manager currently needs a writable `--cert-dir` (default is `/var/run/kubernetes`) for generating self-signed certificates, when no `--tls-cert-file` or `--tls-private-key-file` are provided. - The `system:kube-controller-manager` ClusterRole lacks permission to `get` the `configmap` extension-apiserver-authentication. kube-controller-manager errors if run with a service account bound to the clusterrole.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Floats.java
* @since 14.0 */ @GwtIncompatible // regular expressions public static @Nullable Float tryParse(String string) { if (Doubles.FLOATING_POINT_PATTERN.matcher(string).matches()) { // TODO(lowasser): could be potentially optimized, but only with // extensive testing try { return Float.parseFloat(string); } catch (NumberFormatException e) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/Iterables.java
* given predicate, if such an element exists. * * <p><b>Warning:</b> avoid using a {@code predicate} that matches {@code null}. If {@code null} * is matched in {@code iterable}, a NullPointerException will be thrown. * * <p><b>{@code Stream} equivalent:</b> {@code stream.filter(predicate).findFirst()} * * @since 11.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
import org.opensearch.index.query.QueryBuilders; import com.google.common.collect.Lists; import jakarta.annotation.PostConstruct; import jakarta.annotation.PreDestroy; /** * Manager class for handling thumbnail generation and management. * Provides functionality to generate, cache, and serve thumbnail images for documents. */ public class ThumbnailManager {
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/main/java/org/codelibs/fess/app/web/admin/keymatch/EditForm.java
* This form extends CreateForm to include fields necessary for updating existing key match entries, * including tracking information for optimistic locking and audit trails. * Key matches are used to promote specific documents when certain keywords are searched. */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0)