Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,571 for bist (0.08 sec)

  1. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

        /**
         *
         */
        public interface ListType {
    
            /**
             * @return List
             */
            List<String> listOfString();
    
            /**
             * @return List
             */
            List<Class<?>> listOfClass();
    
            /**
             * @return List
             */
            List<?> listOfWildcard();
        }
    
        /**
         *
         */
        public interface SetType {
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

        val dispatcher: Dispatcher = client.dispatcher
        val proxy: Proxy? = client.proxy
        val protocols: List<Protocol> = client.protocols
        val connectionSpecs: List<ConnectionSpec> = client.connectionSpecs
        val interceptors: List<Interceptor> = client.interceptors
        val networkInterceptors: List<Interceptor> = client.networkInterceptors
        val eventListenerFactory: EventListener.Factory = client.eventListenerFactory
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/eventbus/EventBusTest.java

          this.context = context;
        }
      }
    
      /** Runnable which registers a StringCatcher on an event bus and adds it to a list. */
      private static class Registrator implements Runnable {
        private final EventBus bus;
        private final List<StringCatcher> catchers;
    
        Registrator(EventBus bus, List<StringCatcher> catchers) {
          this.bus = bus;
          this.catchers = catchers;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        #   o objectTypeTargetList: (NotRequired - Default list{TABLE;VIEW})
        #
        #; additionalDropMapList = list:{
        #    ; map:{
        #        ; url = jdbc:oracle:thin:...
        #        ; schema = NEXTEXAMPLEDB
        #        ; user = NEXTEXAMPLEDB
        #        ; password = NEXTEXAMPLEDB
        #        ; propertiesMap = map:{}
        #        ; objectTypeTargetList = list:{TABLE;VIEW}
        #    }
        #}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

        public void test_crawl_withBothConfigs() {
            List<String> webConfigIds = Arrays.asList("webConfig1");
            List<String> fileConfigIds = Arrays.asList("fileConfig1");
    
            // Mock CrawlingConfigHelper
            CrawlingConfigHelper crawlingConfigHelper = new CrawlingConfigHelper() {
                @Override
                public List<WebConfig> getWebConfigListByIds(List<String> webConfigIdList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        }
    
        /**
         * Returns the list of page numbers.
         *
         * @return The list of page numbers.
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers.
         *
         * @param pageNumberList The list of page numbers.
         */
        public void setPageNumberList(final List<Integer> pageNumberList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java

            list = crawlerThread.getClientRuleList("");
            assertEquals(0, list.size());
    
            list = crawlerThread.getClientRuleList(" ");
            assertEquals(0, list.size());
    
            list = crawlerThread.getClientRuleList("playwright:http://.*");
            assertEquals(1, list.size());
            assertEquals("playwright", list.get(0).getFirst());
            assertEquals("http://.*", list.get(0).getSecond().pattern());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #                     ; elementList=list:{[the list of classification element's name]}
    #                 }
    #             }
    #         }
    #         # classification elements for implicit classification
    #         ; map:{
    #             ; code=[code]; name=[name]; alias=[alias]; comment=[comment]
    #             ; sisterCode=[code or code-list]; subItemMap=map:{[free-map]}
    #         }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

          // don't let the entries get GCed
          List<Entry<Object, Object>> unused = warmUp(cache);
          assertEquals(WARMUP_SIZE, cache.size());
          assertMapSize(cache.asMap(), WARMUP_SIZE);
          checkValidState(cache);
        }
      }
    
      public void testContainsKey_found() {
        for (LoadingCache<Object, Object> cache : caches()) {
          // don't let the entries get GCed
          List<Entry<Object, Object>> warmed = warmUp(cache);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/RoleService.java

        /**
         * Constructor.
         */
        public RoleService() {
            super();
        }
    
        /**
         * Gets a list of roles based on the pager.
         * @param rolePager The pager for roles.
         * @return A list of roles.
         */
        public List<Role> getRoleList(final RolePager rolePager) {
    
            final PagingResultBean<Role> roleList = roleBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top