Search Options

Results per page
Sort
Preferred Languages
Advance

Results 941 - 950 of 3,253 for classof (0.06 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

        }
    
        @Override
        protected Class<? extends CrawlingInfo> typeOfSelectedEntity() {
            return CrawlingInfo.class;
        }
    
        @Override
        protected Class<CrawlingInfo> typeOfHandlingEntity() {
            return CrawlingInfo.class;
        }
    
        @Override
        protected Class<CrawlingInfoCB> typeOfHandlingConditionBean() {
            return CrawlingInfoCB.class;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordToLabelBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends ElevateWordToLabel> typeOfSelectedEntity() {
            return ElevateWordToLabel.class;
        }
    
        @Override
        protected Class<ElevateWordToLabel> typeOfHandlingEntity() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java

        }
    
        @Override
        protected Class<? extends JobLog> typeOfSelectedEntity() {
            return JobLog.class;
        }
    
        @Override
        protected Class<JobLog> typeOfHandlingEntity() {
            return JobLog.class;
        }
    
        @Override
        protected Class<JobLogCB> typeOfHandlingConditionBean() {
            return JobLogCB.class;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRoleTypeBhv.java

        }
    
        @Override
        protected Class<? extends RoleType> typeOfSelectedEntity() {
            return RoleType.class;
        }
    
        @Override
        protected Class<RoleType> typeOfHandlingEntity() {
            return RoleType.class;
        }
    
        @Override
        protected Class<RoleTypeCB> typeOfHandlingConditionBean() {
            return RoleTypeCB.class;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

        }
    
        @Override
        protected Class<? extends ThumbnailQueue> typeOfSelectedEntity() {
            return ThumbnailQueue.class;
        }
    
        @Override
        protected Class<ThumbnailQueue> typeOfHandlingEntity() {
            return ThumbnailQueue.class;
        }
    
        @Override
        protected Class<ThumbnailQueueCB> typeOfHandlingConditionBean() {
            return ThumbnailQueueCB.class;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Resources.java

       * {@linkplain Thread#getContextClassLoader() context class loader}. In simple environments, the
       * context class loader will find resources from the class path. In environments where different
       * threads can have different class loaders, for example app servers, the context class loader
       * will typically have been set to an appropriate loader for the current thread.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 02 13:50:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/cache/EmptyCachesTest.java

          assertThrows(NullPointerException.class, () -> keys.toArray((Object[]) null));
          checkEmpty(cache);
        }
      }
    
      public void testKeySet_addNotSupported() {
        for (LoadingCache<Object, Object> cache : caches()) {
          assertThrows(UnsupportedOperationException.class, () -> cache.asMap().keySet().add(1));
    
          assertThrows(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/EmptyCachesTest.java

          assertThrows(NullPointerException.class, () -> keys.toArray((Object[]) null));
          checkEmpty(cache);
        }
      }
    
      public void testKeySet_addNotSupported() {
        for (LoadingCache<Object, Object> cache : caches()) {
          assertThrows(UnsupportedOperationException.class, () -> cache.asMap().keySet().add(1));
    
          assertThrows(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/JoinerTest.java

        checkResult(J, ITERABLE_123, "1-2-3");
    
        assertThrows(NullPointerException.class, () -> J.join(ITERABLE_NULL));
        assertThrows(NullPointerException.class, () -> J.join(ITERABLE_1_NULL_2));
    
        assertThrows(NullPointerException.class, () -> J.join(ITERABLE_NULL.iterator()));
        assertThrows(NullPointerException.class, () -> J.join(ITERABLE_1_NULL_2.iterator()));
      }
    
      public void testOnCharOverride() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 17 18:14:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/graph/PackageSanityTests.java

        setDistinctValues(AbstractGraphBuilder.class, GRAPH_BUILDER_A, GRAPH_BUILDER_B);
        setDistinctValues(Graph.class, IMMUTABLE_GRAPH_A, IMMUTABLE_GRAPH_B);
        setDistinctValues(MutableNetwork.class, mutableNetworkA, mutableNetworkB);
        setDistinctValues(NetworkBuilder.class, NETWORK_BUILDER_A, NETWORK_BUILDER_B);
        setDistinctValues(Network.class, IMMUTABLE_NETWORK_A, IMMUTABLE_NETWORK_B);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top