Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1331 - 1340 of 7,721 for class2 (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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/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)
  9. guava-tests/test/com/google/common/eventbus/DispatcherTest.java

      private final ImmutableList<Subscriber> integerSubscribers =
          ImmutableList.of(
              subscriber(bus, i1, "handleInteger", Integer.class),
              subscriber(bus, i2, "handleInteger", Integer.class),
              subscriber(bus, i3, "handleInteger", Integer.class));
    
      private final StringSubscriber s1 = new StringSubscriber("s1");
      private final StringSubscriber s2 = new StringSubscriber("s2");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 27 15:41:25 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IterablesTest.java

        Iterable<String> iterable = asList("foo", "bar");
        assertThrows(IllegalArgumentException.class, () -> getOnlyElement(iterable, "x"));
      }
    
      @GwtIncompatible // Iterables.toArray(Iterable, Class)
      public void testToArrayEmpty() {
        Iterable<String> iterable = emptyList();
        String[] array = Iterables.toArray(iterable, String.class);
        assertTrue(Arrays.equals(new String[0], array));
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:12:33 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top