- Sort Score
- Num 10 results
- Language All
Results 1431 - 1440 of 3,730 for rreturn (0.09 seconds)
-
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
* * @param field the field name to check * @return true if the field can be used for faceted search, false otherwise */ public boolean isFacetField(final String field) { if (StringUtil.isBlank(field)) { return false; } return facetFieldSet != null && facetFieldSet.contains(field); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 22.5K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationRule.java
if (shouldSkipViolationCheckFor(member)) { return null; } SinceTagStatus since = getRepository().getSince(member); if (since instanceof SinceTagStatus.Present present) { if (present.getVersion().equals(getCurrentVersion())){ return null; } else {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java
public String getUserId() { return authResult.account().username(); } @Override public String toString() { return "{" + authResult.account().username() + "}"; } /** * Gets the Entra ID user associated with this credential. * @return The Entra ID user instance. */ public EntraIdUser getUser() { return new EntraIdUser(authResult); } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/RegularImmutableSortedMapMapInterfaceTest.java
return ImmutableSortedMap.of(); } @Override protected SortedMap<String, Integer> makePopulatedMap() { return ImmutableSortedMap.of("one", 1, "two", 2, "three", 3); } @Override protected String getKeyNotInPopulatedMap() { return "minus one"; } @Override protected Integer getValueNotInPopulatedMap() { return -1; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 1.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/SingletonImmutableBiMap.java
return singleValue.equals(value); } @Override boolean isPartialView() { return false; } @Override ImmutableSet<Entry<K, V>> createEntrySet() { return ImmutableSet.of(immutableEntry(singleKey, singleValue)); } @Override ImmutableSet<K> createKeySet() { return ImmutableSet.of(singleKey); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
} @Override protected String getActionRole() { return ROLE; } /** * Displays the log management index page. * * @return HTML response for the log list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asIndexHtml(); } /** * Downloads a log file by its encoded ID. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionBean.java
public int getFetchSize() { return getSqlClause().getFetchSize(); } @Override public int getFetchPageNumber() { return getSqlClause().getFetchPageNumber(); } @Override public int getPageStartIndex() { return getSqlClause().getPageStartIndex(); } @Override public int getPageEndIndex() { return getSqlClause().getPageEndIndex(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 17.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/RegularImmutableSortedSet.java
return false; } } return true; } catch (ClassCastException e) { return false; } catch (NoSuchElementException e) { return false; // concurrent change to other set } } return containsAll(that); } @Override public E first() { if (isEmpty()) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
}).createPageNumberList()); return pathMappingList; } /** * Gets a path mapping by ID. * * @param id the path mapping ID * @return the path mapping */ public OptionalEntity<PathMapping> getPathMapping(final String id) { return pathMappingBhv.selectByPK(id); } /** * Stores a path mapping. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.7K bytes - Click Count (0)