- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 1,385 for protected (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
@Resource private Client client; protected int sizeForDelete = 100; protected String scrollForDelete = "1m"; protected int sizeForCursor = 100; protected String scrollForCursor = "1m"; protected String searchTimeout = "3m"; protected String indexTimeout = "3m"; protected String scrollSearchTimeout = "3m"; protected String bulkTimeout = "3m"; protected String deleteTimeout = "3m";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ScheduledJobDbm.java
// ========== protected final String _tableDbName = "scheduled_job"; protected final String _tableDispName = "scheduled_job"; protected final String _tablePropertyName = "ScheduledJob"; public String getTableDbName() { return _tableDbName; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.java
return facadeSelectByPK(id); } protected OptionalEntity<CrawlingInfo> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); } protected <ENTITY extends CrawlingInfo> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) { return doSelectEntity(xprepareCBAsPK(id), tp); } protected CrawlingInfoCB xprepareCBAsPK(String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsElevateWordBhv.java
return facadeSelectByPK(id); } protected OptionalEntity<ElevateWord> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); } protected <ENTITY extends ElevateWord> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) { return doSelectEntity(xprepareCBAsPK(id), tp); } protected ElevateWordCB xprepareCBAsPK(String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java
return facadeSelectByPK(id); } protected OptionalEntity<PathMapping> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); } protected <ENTITY extends PathMapping> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) { return doSelectEntity(xprepareCBAsPK(id), tp); } protected PathMappingCB xprepareCBAsPK(String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/BiMapGenerators.java
* @author Jared Levy * @author Hayward Chan */ @GwtCompatible @NullMarked public class BiMapGenerators { public static class ImmutableBiMapGenerator extends TestStringBiMapGenerator { @Override protected BiMap<String, String> create(Entry<String, String>[] entries) { ImmutableBiMap.Builder<String, String> builder = ImmutableBiMap.builder(); for (Entry<String, String> entry : entries) { checkNotNull(entry);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractSequentialIterator.java
* supported, nor is the {@link #remove()} method. * * <p>Example: * * {@snippet : * Iterator<Integer> powersOfTwo = * new AbstractSequentialIterator<Integer>(1) { * protected Integer computeNext(Integer previous) { * return (previous == 1 << 30) ? null : previous * 2; * } * }; * } * * @author Chris Povirk
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
protected DocMeta docMeta; protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties(); protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties(); protected EntityModifiedProperties __specifiedProperties; protected boolean __createdBySelect;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java
protected DocMeta docMeta; protected final EntityUniqueDrivenProperties __uniqueDrivenProperties = newUniqueDrivenProperties(); protected final EntityModifiedProperties __modifiedProperties = newModifiedProperties(); protected EntityModifiedProperties __specifiedProperties; protected boolean __createdBySelect;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
currentSsoType = "invalid"; ssoManager = new SsoManager() { @Override protected String getSsoType() { return currentSsoType; } @Override protected SsoAuthenticator getAuthenticator() { return null; } }; assertNull(ssoManager.getLoginCredential()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0)