- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 3,496 for 1Final (0.11 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
public static List<Map<String, String>> getBugReportItems() { final List<Map<String, String>> itemList = new ArrayList<>(); for (final String label : bugReportLabels) { itemList.add(createPropItem(label)); } final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); for (final Map.Entry<Object, Object> entry : systemProperties.entrySet()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/GenericsUtilTest.java
public void testList() throws Exception { final Method m1 = ListType.class.getMethod("listOfString"); final Type t1 = m1.getGenericReturnType(); assertThat(GenericsUtil.isTypeOf(t1, List.class), is(true)); assertThat(GenericsUtil.getElementTypeOfList(t1), is(sameClass(String.class))); final Method m2 = ListType.class.getMethod("listOfClass"); final Type t2 = m2.getGenericReturnType();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.5K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven4ScopeManagerConfiguration.java
*/ @Deprecated(since = "4.0.0") public final class Maven4ScopeManagerConfiguration implements ScopeManagerConfiguration { public static final Maven4ScopeManagerConfiguration INSTANCE = new Maven4ScopeManagerConfiguration(); public static final String RS_NONE = "none"; public static final String RS_MAIN_COMPILE = "main-compile"; public static final String RS_MAIN_COMPILE_PLUS_RUNTIME = "main-compilePlusRuntime";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
protected SortBuilder<?> createFieldSortBuilder(final String field, final SortOrder order) { if (QueryFieldConfig.SCORE_FIELD.equals(field) || QueryFieldConfig.DOC_SCORE_FIELD.equals(field)) { return SortBuilders.scoreSort().order(order); } return SortBuilders.fieldSort(field).order(order); } protected boolean isSearchField(final String field) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
/** * */ public static final byte SMB2_OPLOCK_LEVEL_LEASE = (byte) 0xFF; /** * */ public static final int SMB2_IMPERSONATION_LEVEL_ANONYMOUS = 0x0; /** * */ public static final int SMB2_IMPERSONATION_LEVEL_IDENTIFICATION = 0x1; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 09:52:11 UTC 2019 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
*/ package org.codelibs.fess.exception; public class SsoLoginException extends FessSystemException { private static final long serialVersionUID = 1L; public SsoLoginException(final String message) { super(message); } public SsoLoginException(final String message, final Exception e) { super(message, e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 967 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
*/ package org.codelibs.fess.exception; public class SsoProcessException extends FessSystemException { private static final long serialVersionUID = 1L; public SsoProcessException(final String message) { super(message); } public SsoProcessException(final String message, final Exception e) { super(message, e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 973 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
public static OptionalEntity<Map<String, Object>> getDoc(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient(); switch (form.crudMode) { case CrudMode.CREATE: final Map<String, Object> entity = new HashMap<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 24 09:03:45 UTC 2024 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exbhv/GroupBhv.java
if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexUserIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_user"), name); } return indexName; } @Override protected <RESULT extends Group> RESULT createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0)