Search Options

Results per page
Sort
Preferred Languages
Advance

Results 441 - 450 of 1,434 for created (0.04 sec)

  1. MoreObjects.java

    @CheckForNull T second) { L62: if (first != null) { L63: return first; L64: } L65: if (second != null) { L66: return second; L67: } L68: throw new NullPointerException("Both parameters are null"); L69: } L70: L71: /** L72: * Creates an instance of {@link ToStringHelper}. L73: * L74: * <p>This is helpful for implementing {@link Object#toString()}. Specification by example: L75: * L76: * <pre>{@code L77: * // Returns "ClassName{}" L78: * MoreObjects.toStringHelper(this)...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 10 15:41:27 UTC 2024
      16.1K bytes
  2. BsUserBhv.java

    selectList(CBCall<UserCB> cbLambda) { L197: return facadeSelectList(createCB(cbLambda)); L198: } L199: L200: public PagingResultBean<User> selectPage(CBCall<UserCB> cbLambda) { L201: // #pending same? L202: return (PagingResultBean<User>) facadeSelectList(createCB(cbLambda)); L203: } L204: L205: public void selectCursor(CBCall<UserCB> cbLambda, EntityRowHandler<User> entityLambda) { L206: facadeSelectCursor(createCB(cbLambda), entityLambda); L207: } L208: L209: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12K bytes
  3. ListTestSuiteBuilder.java

    L130: this.gen = gen; L131: } L132: L133: @Override L134: public SampleElements<E> samples() { L135: return gen.samples(); L136: } L137: L138: @Override L139: public List<E> create(Object... elements) { L140: return (List<E>) SerializableTester.reserialize(gen.create(elements)); L141: } L142: L143: @Override L144: public E[] createArray(int length) { L145: return gen.createArray(length); L146: } L147: L148: @Override L149: public Iterable<E>...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      6.4K bytes
  4. CreateForm.java

    L61: @Max(value = 2147483647) L62: @ValidateTypeFailure L63: public Integer sortOrder; L64: L65: @Size(max = 1000) L66: public String createdBy; L67: L68: @ValidateTypeFailure L69: public Long createdTime; L70: L71: public void initialize() { L72: crudMode = CrudMode.CREATE; L73: sortOrder = 0; L74: createdBy = ComponentUtil.getSystemHelper().getUsername(); L75: createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); L76: permissions...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.2K bytes
  5. Stopwatch.java

    private boolean isRunning; L103: private long elapsedNanos; L104: private long startTick; L105: L106: /** L107: * Creates (but does not start) a new stopwatch using {@link System#nanoTime} as its time source. L108: * L109: * @since 15.0 L110: */ L111: public static Stopwatch createUnstarted() { L112: return new Stopwatch(); L113: } L114: L115: /** L116: * Creates (but does not start) a new stopwatch, using the specified time source. L117: * L118: * @since 15.0 L119: */ L120:...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 31 14:20:11 UTC 2024
      9.3K bytes
  6. MoreExecutors.java

    executor) { L295: executor.setThreadFactory( L296: new ThreadFactoryBuilder() L297: .setDaemon(true) L298: .setThreadFactory(executor.getThreadFactory()) L299: .build()); L300: } L301: L302: /** L303: * Creates an executor service that runs each task in the thread that invokes {@code L304: * execute/submit}, as in {@code ThreadPoolExecutor.CallerRunsPolicy}. This applies both to L305: * individually submitted tasks and to collections of tasks submitted...
    github.com/google/guava/guava/src/com/google/co...
    Sat Oct 19 00:51:36 UTC 2024
      44.1K bytes
  7. pom.xml

    <scope>test</scope>; <scope>compile</scope> is right so that guava-testlib users get junit transitively. --> L42: <version>4.13.2</version> L43: </dependency> L44: <dependency> L45: <!-- L46: Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle. L47: --> L48: <groupId>com.google.truth</groupId> L49: <artifactId>truth</artifactId> L50: <version>${truth.version}</version> L51: <scope>test</scope> L52: <exclusions> L53: <exclusion>...
    github.com/google/guava/android/guava-testlib/p...
    Wed Jul 24 18:53:31 UTC 2024
      3.3K bytes
  8. RemovalNotification.java

    @Nullable V> { L39: private final RemovalCause cause; L40: L41: /** L42: * Creates a new {@code RemovalNotification} for the given {@code key}/{@code value} pair, with L43: * the given {@code cause} for the removal. The {@code key} and/or {@code value} may be {@code L44: * null} if they were already garbage collected. L45: * L46: * @since 19.0 L47: */ L48: public static <K, V> RemovalNotification<K, V> create( L49: @CheckForNull K key, @CheckForNull V value, RemovalCause cause) {...
    github.com/google/guava/android/guava/src/com/g...
    Tue Feb 01 20:46:24 UTC 2022
      2.5K bytes
  9. pom.xml

    <scope>test</scope>; <scope>compile</scope> is right so that guava-testlib users get junit transitively. --> L42: <version>4.13.2</version> L43: </dependency> L44: <dependency> L45: <!-- L46: Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle. L47: --> L48: <groupId>com.google.truth</groupId> L49: <artifactId>truth</artifactId> L50: <version>${truth.version}</version> L51: <scope>test</scope> L52: <exclusions> L53: <exclusion>...
    github.com/google/guava/guava-testlib/pom.xml
    Wed Jul 24 18:53:31 UTC 2024
      3.3K bytes
  10. Queues.java

    L51: L52: // ArrayBlockingQueue L53: L54: /** L55: * Creates an empty {@code ArrayBlockingQueue} with the given (fixed) capacity and nonfair access L56: * policy. L57: */ L58: @J2ktIncompatible L59: @GwtIncompatible // ArrayBlockingQueue L60: public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) { L61: return new ArrayBlockingQueue<>(capacity); L62: } L63: L64: // ArrayDeque L65: L66: /** L67: * Creates an empty {@code ArrayDeque}. L68: * L69: * @since 12.0...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 26 14:11:14 UTC 2024
      18.4K bytes
Back to top