- Sort Score
- Num 10 results
- Language All
Results 511 - 520 of 742 for unchecked (0.13 seconds)
-
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
* @return a list of strings representing the given object * @throws IllegalArgumentException if the object is not a string or a list */ @SuppressWarnings("unchecked") public static List<String> getAsList(final Object value) { if (value == null) { return new ArrayList<>(); } if (value instanceof String strValue) {Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Nov 23 11:21:40 GMT 2025 - 17.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
}); } protected <BUILDER> int[] delegateBatchRequest(final List<? extends Entity> entityList, Function<EsAbstractEntity, BUILDER> call) { @SuppressWarnings("unchecked") final BulkList<? extends Entity, BUILDER> bulkList = (BulkList<? extends Entity, BUILDER>) entityList; final RequestOptionCall<BUILDER> builderEntityCall = bulkList.getEntityCall();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 26.4K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
* * @param str * The string to convert. * @param locale * The locale. * @return The converted {@link Date}. */ @SuppressWarnings("unchecked") protected static Date toDate(final String str, final Locale locale) { for (final DateFormat format : MultiIterator.iterable(new DateFormatIterator(locale), new PlainDateFormatIterator(str, locale))) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 20.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
* * @param str * The string to convert. * @param locale * The locale. * @return The converted {@link Date}. */ @SuppressWarnings("unchecked") protected static Date toDate(final String str, final Locale locale) { for (final DateFormat format : MultiIterator.iterable(new DateFormatIterator(locale), new PlainDateFormatIterator(str, locale))) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 20.6K bytes - Click Count (0) -
src/main/webapp/js/chat.js
return id; } /** * Set a filter value based on checked state (add if checked, remove if unchecked) */ function setFilter(array, value, checked) { var index = array.indexOf(value); if (checked && index === -1) { array.push(value); } else if (!checked && index !== -1) { array.splice(index, 1); } } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Equivalence.java
* handle either reference, so it's safe to circumvent compile-time type checking. */ @SuppressWarnings("unchecked") Equivalence<Object> equivalence = (Equivalence<Object>) this.equivalence; return equivalence.equivalent(this.reference, that.reference); } } return false; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jul 10 01:47:55 GMT 2025 - 14.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
typeVariables = getTypeVariableMap(beanClass); setupConstructorDescs(); setupPropertyDescs(); setupMethodDescs(); setupFieldDescs(); } @SuppressWarnings("unchecked") @Override public <T> Class<T> getBeanClass() { return (Class<T>) beanClass; } @Override public Map<TypeVariable<?>, Type> getTypeVariables() { return typeVariables;
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 25.8K bytes - Click Count (1) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
} /** * Converts a string to a {@link Date}. * * @param str the string * @param locale the locale * @return the converted {@link Date} */ @SuppressWarnings("unchecked") protected static Date toDate(final String str, final Locale locale) { for (final DateFormat format : iterable(new DateFormatIterator(locale), new PlainDateFormatIterator(str, locale))) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 19.6K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java
public E next() { if (cursor >= array.length) throw new NoSuchElementException(); lastRet = cursor; // array comes from q.toArray() and so should have only E's in it @SuppressWarnings("unchecked") E e = (E) array[cursor++]; return e; } @Override public void remove() { if (lastRet < 0) throw new IllegalStateException(); Object x = array[lastRet];
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 19K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java
stream.writeObject(countMap); } private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { stream.defaultReadObject(); @SuppressWarnings("unchecked") // reading data stored by writeObject ConcurrentMap<E, AtomicInteger> deserializedCountMap = (ConcurrentMap<E, AtomicInteger>) requireNonNull(stream.readObject());
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 22.3K bytes - Click Count (0)