- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,479 for olisit (0.11 sec)
-
docs/pt/docs/tutorial/dependencies/classes-as-dependencies.md
Em ambos os casos teremos: * Um parâmetro de consulta `q` opcional do tipo `str`. * Um parâmetro de consulta `skip` do tipo `int`, com valor padrão `0`. * Um parâmetro de consulta `limit` do tipo `int`, com valor padrão `100`. Os dados serão convertidos, validados, documentados no esquema da OpenAPI e etc nos dois casos. ## Utilizando Agora você pode declarar sua dependência utilizando essa classe.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/classes-as-dependencies.md
In both cases, it will have: * An optional `q` query parameter that is a `str`. * A `skip` query parameter that is an `int`, with a default of `0`. * A `limit` query parameter that is an `int`, with a default of `100`. In both cases the data will be converted, validated, documented on the OpenAPI schema, etc. ## Use it { #use-it }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
return List.of("Zebra", "Apple", "Banana").stream().sorted().collect(java.util.stream.Collectors.toList()); } }; List<String> names = testFactory.loadDataStoreNameList(); assertEquals(3, names.size()); assertEquals("Apple", names.get(0)); assertEquals("Banana", names.get(1)); assertEquals("Zebra", names.get(2)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java
* @return JSON response containing list of data config settings */ // GET /api/admin/dataconfig/settings // PUT /api/admin/dataconfig/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final DataConfigPager pager = copyBeanToNewBean(body, DataConfigPager.class); final List<DataConfig> list = dataConfigService.getDataConfigList(pager);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
final FileAuthPager pager = copyBeanToNewBean(body, FileAuthPager.class); final List<FileAuthentication> list = fileAuthService.getFileAuthenticationList(pager); return asJson( new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount()) .status(ApiResult.Status.OK)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableMap.java
} static final class KeySet<K> extends ImmutableSet<K> { private final transient ImmutableMap<K, ?> map; private final transient ImmutableList<K> list; KeySet(ImmutableMap<K, ?> map, ImmutableList<K> list) { this.map = map; this.list = list; } @Override public UnmodifiableIterator<K> iterator() { return asList().iterator(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
@Resource private ProtwordsService protwordsService; /** * Retrieve list of protected words entries for the specified dictionary. * * @param dictId identifier of the dictionary * @param body search criteria and paging parameters * @return JSON response containing list of entries */ // GET /api/admin/dict/protwords/settings/{dictId} @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
* @return JSON response containing scheduler settings list */ // GET /api/admin/scheduler // PUT /api/admin/scheduler @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final SchedulerPager pager = copyBeanToNewBean(body, SchedulerPager.class); final List<ScheduledJob> list = scheduledJobService.getScheduledJobList(pager);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
/** * Returns an immutable list of project remote repositories (directly specified or inherited). * The repositories are ordered by declaration order, with inherited repositories appearing * after directly specified ones. * * @param project the project * @return ordered list of remote repositories */ @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:29:13 UTC 2025 - 12K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
* stored bytes exceeds the limit, the cache will remove entries in the background until the limit * is satisfied. The limit is not strict: the cache may temporarily exceed it while waiting for * files to be deleted. The limit does not include filesystem overhead or the cache journal so * space-sensitive applications should set a conservative limit. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 34.7K bytes - Viewed (0)