Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 1,434 for created (0.04 sec)

  1. CreateForm.java

    @Max(value = 2147483647) L71: @ValidateTypeFailure L72: public Integer sortOrder; L73: L74: @Size(max = 1000) L75: public String createdBy; L76: L77: @ValidateTypeFailure L78: public Long createdTime; L79: L80: public void initialize() { L81: crudMode = CrudMode.CREATE; L82: boost = 1.0f; L83: sortOrder = 0; L84: createdBy = ComponentUtil.getSystemHelper().getUsername(); L85: createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); L86:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.4K bytes
  2. NavigableMapTestSuiteBuilder.java

    TestSortedMapGenerator<K, V> { L144: DescendingTestMapGenerator(TestSortedMapGenerator<K, V> delegate) { L145: super(delegate); L146: } L147: L148: @Override L149: public NavigableMap<K, V> create(Object... entries) { L150: NavigableMap<K, V> map = (NavigableMap<K, V>) delegate.create(entries); L151: return map.descendingMap(); L152: } L153: L154: @Override L155: public Iterable<Entry<K, V>> order(List<Entry<K, V>> insertionOrder) { L156: insertionOrder = castOr...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      7K bytes
  3. TestMultisetGenerator.java

    nerator; L22:import org.checkerframework.checker.nullness.qual.Nullable; L23: L24:/** L25: * Creates multisets, containing sample elements, to be tested. L26: * L27: * @author Jared Levy L28: */ L29:@GwtCompatible L30:@ElementTypesAreNonnullByDefault L31:public interface TestMultisetGenerator<E extends @Nullable Object> L32: extends TestCollectionGenerator<E> { L33: @Override L34: Multiset<E> create(Object... elements); L35:}...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Feb 21 16:49:06 UTC 2024
      1.2K bytes
  4. AbstractListeningExecutorService.java

    @ParametricNullness T value) { L51: return TrustedListenableFutureTask.create(runnable, value); L52: } L53: L54: /** L55: * @since 19.0 (present with return type {@code ListenableFutureTask} since 14.0) L56: */ L57: @CanIgnoreReturnValue // TODO(kak): consider removing this L58: @Override L59: protected final <T extends @Nullable Object> RunnableFuture<T> newTaskFor(Callable<T> callable) { L60: return TrustedListenableFutureTask.create(callable); L61: } L62: L63: @CanIgnoreReturnValue // TODO(kak):...
    github.com/google/guava/android/guava/src/com/g...
    Fri May 12 18:32:03 UTC 2023
      3K bytes
  5. AbstractListeningExecutorService.java

    @ParametricNullness T value) { L51: return TrustedListenableFutureTask.create(runnable, value); L52: } L53: L54: /** L55: * @since 19.0 (present with return type {@code ListenableFutureTask} since 14.0) L56: */ L57: @CanIgnoreReturnValue // TODO(kak): consider removing this L58: @Override L59: protected final <T extends @Nullable Object> RunnableFuture<T> newTaskFor(Callable<T> callable) { L60: return TrustedListenableFutureTask.create(callable); L61: } L62: L63: @CanIgnoreReturnValue // TODO(kak):...
    github.com/google/guava/guava/src/com/google/co...
    Fri May 12 18:32:03 UTC 2023
      3K bytes
  6. Maps.java

    n, valueFunction, mergeFunction); L226: } L227: L228: /** L229: * Creates a <i>mutable</i>, empty {@code HashMap} instance. L230: * L231: * <p><b>Note:</b> if mutability is not required, use {@link ImmutableMap#of()} instead. L232: * L233: * <p><b>Note:</b> if {@code K} is an {@code enum} type, use {@link #newEnumMap} instead. L234: * L235: * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead, L236: * use the {@code HashMap} constructor directly,...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:05:46 UTC 2024
      161.6K bytes
  7. Maps.java

    n, valueFunction, mergeFunction); L227: } L228: L229: /** L230: * Creates a <i>mutable</i>, empty {@code HashMap} instance. L231: * L232: * <p><b>Note:</b> if mutability is not required, use {@link ImmutableMap#of()} instead. L233: * L234: * <p><b>Note:</b> if {@code K} is an {@code enum} type, use {@link #newEnumMap} instead. L235: * L236: * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead, L237: * use the {@code HashMap} constructor directly,...
    github.com/google/guava/guava/src/com/google/co...
    Sat Oct 19 00:05:46 UTC 2024
      167.4K bytes
  8. ArrayBasedUnicodeEscaper.java

    ArrayBasedUnicodeEscaper( L74: Map<Character, String> replacementMap, L75: int safeMin, L76: int safeMax, L77: @Nullable String unsafeReplacement) { L78: this(ArrayBasedEscaperMap.create(replacementMap), safeMin, safeMax, unsafeReplacement); L79: } L80: L81: /** L82: * Creates a new ArrayBasedUnicodeEscaper instance with the given replacement map and specified L83: * safe range. If {@code safeMax < safeMin} then no code points are considered safe. This L84: * initializer...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:26:48 UTC 2024
      8.6K bytes
  9. LinkedHashMultimap.java

    LinkedHashMultimap<K extends @Nullable Object, V extends @Nullable Object> L89: extends LinkedHashMultimapGwtSerializationDependencies<K, V> { L90: L91: /** Creates a new, empty {@code LinkedHashMultimap} with the default initial capacities. */ L92: public static <K extends @Nullable Object, V extends @Nullable Object> L93: LinkedHashMultimap<K, V> create() { L94: return new LinkedHashMultimap<>(DEFAULT_KEY_CAPACITY, DEFAULT_VALUE_SET_CAPACITY); L95: } L96: L97: /** L98: * Constructs an empty...
    github.com/google/guava/guava/src/com/google/co...
    Thu Feb 22 21:19:52 UTC 2024
      24.3K bytes
  10. TestSortedSetGenerator.java

    L40: /** L41: * Returns an element less than the {@link #samples()} but greater than {@link L42: * #belowSamplesLesser()}. L43: */ L44: E belowSamplesGreater(); L45: L46: /** L47: * Returns an element greater than the {@link #samples()} but less than {@link L48: * #aboveSamplesGreater()}. L49: */ L50: E aboveSamplesLesser(); L51: L52: /** L53: * Returns an element greater than the {@link #samples()} and greater than {@link L54: * #aboveSamplesLesser()}. L55: */ L56: E aboveSamplesGreater();...
    github.com/google/guava/android/guava-testlib/s...
    Wed Feb 21 16:49:06 UTC 2024
      1.7K bytes
Back to top