- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 3,587 for findall (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java
/** * Constructor for SuggestResponse. * @param index The index name. * @param tookMs The time taken in milliseconds. * @param words The list of suggested words. * @param total The total number of hits. * @param items The list of suggested items. */ public SuggestResponse(final String index, final long tookMs, final List<String> words, final long total,
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/JobLogTests.java
@Tag("it") public class JobLogTests extends CrudTestBase { private static final String NAME_PREFIX = "joblogTest_"; private static final String API_PATH = "/api/admin/joblog"; private static final String LIST_ENDPOINT_SUFFIX = "logs"; private static final String ITEM_ENDPOINT_SUFFIX = "log"; private static final String KEY_PROPERTY = ""; @Override protected String getNamePrefix() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2LogoffRequest.java
* * @param config the configuration for this request */ public Smb2LogoffRequest(final Configuration config) { super(config, SMB2_LOGOFF); } @Override protected Smb2LogoffResponse createResponse(final CIFSContext tc, final ServerMessageBlock2Request<Smb2LogoffResponse> req) { return new Smb2LogoffResponse(tc.getConfig()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EchoRequest.java
/** * Constructs an SMB2 echo request * @param config the client configuration */ public Smb2EchoRequest(final Configuration config) { super(config, SMB2_ECHO); } @Override protected Smb2EchoResponse createResponse(final CIFSContext tc, final ServerMessageBlock2Request<Smb2EchoResponse> req) { return new Smb2EchoResponse(tc.getConfig()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
*/ protected OptionalThing<HtmlResponse> redirectToSearchPage() { final RequestParameter[] searchParameters = searchHelper.getSearchParameters(); if (searchParameters.length > 0) { final List<String> paramList = new ArrayList<>(); for (final RequestParameter param : searchParameters) { for (final String value : param.getValues()) { paramList.add(param.getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/PatternConcatenationFilterFactory.java
private Pattern pattern2; public PatternConcatenationFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) { super(indexSettings, name, settings); final String pattern1Str = settings.get("pattern1"); final String pattern2Str = settings.get("pattern2", ".*"); if (logger.isDebugEnabled()) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.9K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
} catch (AssertionError expected) { return; } fail(); } public static final class BadSerializableFactory { public static Object bad() { return new Serializable() { @Keep private final Object notSerializable = new Object(); }; } private BadSerializableFactory() {} }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
this.groupName = groupName; this.nodeType = nodeType; } NbtAddress(final Name hostName, final int address, final boolean groupName, final int nodeType, final boolean isBeingDeleted, final boolean isInConflict, final boolean isActive, final boolean isPermanent, final byte[] macAddress) { /* * The NodeStatusResponse.readNodeNameArray method may also set this
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
* @param id the entry ID * @return HTML response for the details page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse details(final String dictId, final int crudMode, final long id) { verifyCrudMode(crudMode, CrudMode.DETAILS, dictId); saveToken(); return asDetailsHtml().useForm(EditForm.class, op -> { op.setup(form -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
* @param form the create form * @return optional key match entity */ public static OptionalEntity<KeyMatch> getKeyMatch(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final String username = systemHelper.getUsername(); final long currentTime = systemHelper.getCurrentTimeAsLong(); return getEntity(form, username, currentTime).map(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.7K bytes - Viewed (0)