- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 421 for Imaging (0.07 sec)
-
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
public List<RequestHeader> getRequestHeaderList(final ReqHeaderPager requestHeaderPager) { final PagingResultBean<RequestHeader> requestHeaderList = requestHeaderBhv.selectPage(cb -> { cb.paging(requestHeaderPager.getPageSize(), requestHeaderPager.getCurrentPageNumber()); setupListCondition(cb, requestHeaderPager); }); // update pager
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) { final PagingResultBean<WebAuthentication> webAuthenticationList = webAuthenticationBhv.selectPage(cb -> { cb.paging(webAuthenticationPager.getPageSize(), webAuthenticationPager.getCurrentPageNumber()); setupListCondition(cb, webAuthenticationPager); }); // update pager
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.5K bytes - Viewed (0) -
tests/prepared_stmt_test.go
return err.Error() == "sql: statement is closed" } // TestPreparedStmtConcurrentReset test calling reset and executing SQL concurrently // this test making sure that the gorm would not get a Segmentation Fault, and the only error cause by this is using a closed Stmt func TestPreparedStmtConcurrentReset(t *testing.T) { name := "prepared_stmt_concurrent_reset"
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Aug 22 11:02:05 UTC 2024 - 8.5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/feature_enhancement_request.yaml
companies, or even industries — utilities useful for a sizable proportion of all Java programmers everywhere. If you can give enough detail such that any of us can imagine coming across a similar need in our own work, that's extremely helpful in studying how broadly useful the proposed change will be. - type: textarea attributes: label: Concrete Use Cases
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Nov 17 18:47:47 UTC 2023 - 3.9K bytes - Viewed (0) -
docs/pt/docs/advanced/async-tests.md
Ser capaz de utilizar funções assíncronas em seus testes pode ser útil, por exemplo, quando você está realizando uma consulta em seu banco de dados de maneira assíncrona. Imagine que você deseja testar realizando requisições para a sua aplicação FastAPI e depois verificar que a sua aplicação inseriu corretamente as informações no banco de dados, ao utilizar uma biblioteca assíncrona para banco de dados.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.4K bytes - Viewed (0) -
docs/es/docs/python-types.md
```Python hl_lines="2" {!../../docs_src/python_types/tutorial001.py!} ``` ### Edítalo Es un programa muy simple. Ahora, imagina que lo estás escribiendo desde cero. En algún punto habrías comenzado con la definición de la función, tenías los parámetros listos... Pero, luego tienes que llamar "ese método que convierte la primera letra en una mayúscula".
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
public List<PathMapping> getPathMappingList(final PathMapPager pathMappingPager) { final PagingResultBean<PathMapping> pathMappingList = pathMappingBhv.selectPage(cb -> { cb.paging(pathMappingPager.getPageSize(), pathMappingPager.getCurrentPageNumber()); setupListCondition(cb, pathMappingPager); }); // update pager
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
public List<AccessToken> getAccessTokenList(final AccessTokenPager accessTokenPager) { final PagingResultBean<AccessToken> accessTokenList = accessTokenBhv.selectPage(cb -> { cb.paging(accessTokenPager.getPageSize(), accessTokenPager.getCurrentPageNumber()); setupListCondition(cb, accessTokenPager); }); // update pager
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
public List<FileConfig> getFileConfigList(final FileConfigPager fileConfigPager) { final PagingResultBean<FileConfig> fileConfigList = fileConfigBhv.selectPage(cb -> { cb.paging(fileConfigPager.getPageSize(), fileConfigPager.getCurrentPageNumber()); setupListCondition(cb, fileConfigPager); }); // update pager
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedAsList.java
@Override public int indexOf(@CheckForNull Object target) { int index = delegateCollection().indexOf(target); // TODO(kevinb): reconsider if it's really worth making feeble attempts at // sanity for inconsistent comparators. // The equals() check is needed when the comparator isn't compatible with // equals(). return (index >= 0 && get(index).equals(target)) ? index : -1;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 3.6K bytes - Viewed (0)