Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for playing (0.17 sec)

  1. manifests/charts/gateways/istio-ingress/templates/zzz_profile.yaml

    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Finally, we can set all of that under .Values so the chart behaves without awareness.
    */}}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 22:30:06 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

        protected FessConfig fessConfig;
    
        public List<KeyMatch> getKeyMatchList(final KeyMatchPager keyMatchPager) {
    
            final PagingResultBean<KeyMatch> keyMatchList = keyMatchBhv.selectPage(cb -> {
                cb.paging(keyMatchPager.getPageSize(), keyMatchPager.getCurrentPageNumber());
                setupListCondition(cb, keyMatchPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/GroupService.java

        @Resource
        protected UserBhv userBhv;
    
        public List<Group> getGroupList(final GroupPager groupPager) {
    
            final PagingResultBean<Group> groupList = groupBhv.selectPage(cb -> {
                cb.paging(groupPager.getPageSize(), groupPager.getCurrentPageNumber());
                setupListCondition(cb, groupPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/RoleService.java

        @Resource
        protected UserBhv userBhv;
    
        public List<Role> getRoleList(final RolePager rolePager) {
    
            final PagingResultBean<Role> roleList = roleBhv.selectPage(cb -> {
                cb.paging(rolePager.getPageSize(), rolePager.getCurrentPageNumber());
                setupListCondition(cb, rolePager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

        public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) {
    
            final PagingResultBean<RelatedContent> relatedContentList = relatedContentBhv.selectPage(cb -> {
                cb.paging(relatedContentPager.getPageSize(), relatedContentPager.getCurrentPageNumber());
                setupListCondition(cb, relatedContentPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  6. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

                .header("Content-Type", "text/plain-ish")
                .build(),
            )
          }
        server.enqueue(MockResponse())
        client.newCall(
          request()
            .post("Hi?".toRequestBody(PLAIN))
            .build(),
        ).execute()
        applicationLogs
          .assertLogEqual("--> POST $url")
          .assertLogEqual("Content-Type: text/plain; charset=utf-8")
          .assertLogEqual("Content-Length: 3")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 09:14:38 GMT 2024
    - 37.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/ElevateWord.java

                            cb.query().setElevateWordId_Equal(getId());
                            cb.specify().columnLabelTypeId();
                            cb.paging(fessConfig.getPageLabeltypeMaxFetchSizeAsInteger(), 1);
                        });
                        final List<String> labelIdList = new ArrayList<>();
                        for (final ElevateWordToLabel mapping : mappingList) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

        public List<FailureUrl> getFailureUrlList(final FailureUrlPager failureUrlPager) {
    
            final PagingResultBean<FailureUrl> failureUrlList = failureUrlBhv.selectPage(cb -> {
                cb.paging(failureUrlPager.getPageSize(), failureUrlPager.getCurrentPageNumber());
                setupListCondition(cb, failureUrlPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  9. docs/distributed/CONFIG.md

    ### TODO
    
    In subsequent releases we are planning to extend this to provide things like
    
    - Reload() of MinIO server arguments without fully restarting the process.
    
    - Expanding 1 node at a time by automating the process of creating a new pool
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 15:54:03 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        public List<CrawlingInfo> getCrawlingInfoList(final CrawlingInfoPager crawlingInfoPager) {
    
            final PagingResultBean<CrawlingInfo> crawlingInfoList = crawlingInfoBhv.selectPage(cb -> {
                cb.paging(crawlingInfoPager.getPageSize(), crawlingInfoPager.getCurrentPageNumber());
                setupListCondition(cb, crawlingInfoPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.4K bytes
    - Viewed (0)
Back to top