- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 682 for lista (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
/** * Displays the label type list page. * * @param form the search form * @return HTML response for the list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index(final SearchForm form) { return asListHtml(); } /** * Displays the label type list with pagination. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
/** Configuration for Fess */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of protected words items. * @param dictId the dictionary ID * @param protwordsPager the pager for pagination * @return the list of protected words items */ public List<ProtwordsItem> getProtwordsList(final String dictId, final ProtwordsPager protwordsPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosAuthDataTest.java
* Expects an empty list of authorizations. * @throws PACDecodingException should not be thrown */ @Test void testParseUnknownAuthType() throws PACDecodingException { // GIVEN an unknown auth type int unknownAuthType = -1; byte[] emptyToken = new byte[0]; // WHEN parsing the auth data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
final ListResultBean<DataConfig> list = dataConfigBhv.selectList(cb -> { cb.query().setName_Equal(name); cb.query().addOrderBy_SortOrder_Asc(); }); if (list.isEmpty()) { return OptionalEntity.empty(); } return OptionalEntity.of(list.get(0)); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
cause); } private static <X extends Exception> List<Constructor<X>> preferringStringsThenThrowables( List<Constructor<X>> constructors) { return WITH_STRING_PARAM_THEN_WITH_THROWABLE_PARAM.sortedCopy(constructors); } // TODO: b/296487962 - Consider defining a total order over constructors. private static final Ordering<List<Class<?>>> ORDERING_BY_CONSTRUCTOR_PARAMETER_LIST = Ordering.natural()
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 10.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientCreator.java
/** Map of regular expressions to component names */ protected Map<String, String> clientMap = new LinkedHashMap<>(); /** List of registered crawler client factories */ protected List<CrawlerClientFactory> clientFactoryList = new LinkedList<>(); /** * The maximum size of the client factory list. */ protected int maxClientFactorySize = 10000; /** * Registers a CrawlerClientFactory with this creator.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/metrics/prometheus/grafana/bucket/minio-bucket.json
{ "annotations": { "list": [ { "builtIn": 1, "datasource": { "type": "datasource", "uid": "grafana" }, "enable": true, "hide": true, "iconColor": "rgba(0, 211, 255, 1)", "name": "Annotations & Alerts", "type": "dashboard" } ] }, "description": "MinIO Grafana Dashboard - https://min.io/", "editable": true,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Aug 04 01:46:49 UTC 2025 - 101.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
pcd = pd.getParameterizedClassDesc(); assertThat(pcd.getRawClass(), is(sameClass(List.class))); assertThat(pcd.getArguments().length, is(1)); assertThat(pcd.getArguments()[0].getRawClass(), is(sameClass(Object.class))); bd = BeanDescFactory.getBeanDesc(Bar.class); pd = bd.getPropertyDesc("list"); assertThat(pd.isParameterized(), is(true));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/PredicatesTest.java
} public void testAnd_listDefensivelyCopied() { List<Predicate<Object>> list = new ArrayList<>(); Predicate<Object> predicate = Predicates.and(list); assertTrue(predicate.apply(1)); list.add(Predicates.alwaysFalse()); assertTrue(predicate.apply(1)); } public void testAnd_iterableDefensivelyCopied() { List<Predicate<Object>> list = new ArrayList<>(); Iterable<Predicate<Object>> iterable =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 32.2K bytes - Viewed (0) -
src/main/java/jcifs/spnego/SpnegoToken.java
} /** * Gets the mechanism list MIC (Message Integrity Code) for integrity protection * @return the mechanism list MIC bytes */ public byte[] getMechanismListMIC() { return this.mechanismListMIC; } /** * Sets the mechanism list MIC (Message Integrity Code) for integrity protection * @param mechanismListMIC the mechanism list MIC bytes */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0)