Search Options

Results per page
Sort
Preferred Languages
Advance

Results 731 - 740 of 1,456 for created (0.04 sec)

  1. OneSizeGenerator.java

    generator.samples(); L53: } L54: L55: @Override L56: public T create(Object... elements) { L57: return generator.create(elements); L58: } L59: L60: @Override L61: public E[] createArray(int length) { L62: return generator.createArray(length); L63: } L64: L65: @Override L66: public T createTestSubject() { L67: Collection<E> elements = getSampleElements(getCollectionSize().getNumElements()); L68: return generator.create(elements.toArray()); L69: } L70: L71: @Override L72: public...
    github.com/google/guava/guava-testlib/src/com/g...
    Sat Oct 19 00:05:46 UTC 2024
      2.5K bytes
  2. TestStringMapGenerator.java

    L45: } L46: L47: @Override L48: public Map<String, String> create(Object... entries) { L49: @SuppressWarnings("unchecked") L50: Entry<String, String>[] array = (Entry<String, String>[]) new Entry<?, ?>[entries.length]; L51: int i = 0; L52: for (Object o : entries) { L53: @SuppressWarnings("unchecked") L54: Entry<String, String> e = (Entry<String, String>) o; L55: array[i++] = e; L56: } L57: return create(array); L58: } L59: L60: protected abstract Map<String, String>...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      2.4K bytes
  3. BsFileAuthentication.java

    ======== L161: public String getCreatedBy() { L162: checkSpecifiedProperty("createdBy"); L163: return convertEmptyToNull(createdBy); L164: } L165: L166: public void setCreatedBy(String value) { L167: registerModifiedProperty("createdBy"); L168: this.createdBy = value; L169: } L170: L171: public Long getCreatedTime() { L172: checkSpecifiedProperty("createdTime"); L173: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.5K bytes
  4. Objects.java

    other situations. L45: * </ul> L46: * L47: * <p>This assumes that any non-null objects passed to this function conform to the {@code L48: * equals()} contract. L49: * L50: * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated; use {@link L51: * java.util.Objects#equals} instead. L52: */ L53: public static boolean equal(@CheckForNull Object a, @CheckForNull Object b) { L54: return a == b || (a != null && a.equals(b)); L55: } L56: L57: /** L58: ...
    github.com/google/guava/android/guava/src/com/g...
    Mon Jul 22 19:03:12 UTC 2024
      3K bytes
  5. LabelTypeDbm.java

    Column Info L137: // =========== L138: protected final ColumnInfo _columnCreatedBy = cci("createdBy", "createdBy", null, null, String.class, "createdBy", null, false, false, L139: false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); L140: protected final ColumnInfo _columnCreatedTime = cci("createdTime", "createdTime", null, null,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12.2K bytes
  6. ReaderUtil.java

    L46: * 入力ストリーム。{@literal null}であってはいけません L47: * @param encoding L48: * 入力ストリームのエンコーディング。{@literal null}や空文字列であってはいけません L49: * @return ファイルかへ出力する{@link Reader} L50: */ L51: public static InputStreamReader create(final InputStream is, final String encoding) { L52: assertArgumentNotNull("is", is); L53: assertArgumentNotEmpty("encoding", encoding); L54: L55: try { L56: return new InputStreamReader(is, encoding); L57: }...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      4.5K bytes
  7. SetIterationBenchmark.java

    L46: private Set<Element> setToTest; L47: L48: @BeforeExperiment L49: void setUp() { L50: CollectionBenchmarkSampleData sampleData = L51: new CollectionBenchmarkSampleData(true, random, 0.8, size); L52: setToTest = (Set<Element>) impl.create(sampleData.getValuesInSet()); L53: } L54: L55: @Benchmark L56: int iteration(int reps) { L57: int x = 0; L58: L59: for (int i = 0; i < reps; i++) { L60: for (Element y : setToTest) { L61: x ^= System.identityHashCode(y); L62:...
    github.com/google/guava/android/guava-tests/ben...
    Mon Dec 04 17:37:03 UTC 2017
      1.9K bytes
  8. SetIterationBenchmark.java

    L46: private Set<Element> setToTest; L47: L48: @BeforeExperiment L49: void setUp() { L50: CollectionBenchmarkSampleData sampleData = L51: new CollectionBenchmarkSampleData(true, random, 0.8, size); L52: setToTest = (Set<Element>) impl.create(sampleData.getValuesInSet()); L53: } L54: L55: @Benchmark L56: int iteration(int reps) { L57: int x = 0; L58: L59: for (int i = 0; i < reps; i++) { L60: for (Element y : setToTest) { L61: x ^= System.identityHashCode(y); L62:...
    github.com/google/guava/guava-tests/benchmark/c...
    Mon Dec 04 17:37:03 UTC 2017
      1.9K bytes
  9. UuidUtil.java

    L35: private static final String BASE = StringUtil.toHex(getAddress()) + StringUtil.toHex(System.identityHashCode(RANDOM)); L36: L37: /** L38: * UUIDを作成します。 L39: * L40: * @return UUIDの文字列 L41: */ L42: public static String create() { L43: final StringBuilder buf = new StringBuilder(BASE.length() * 2); L44: buf.append(BASE); L45: final int lowTime = (int) (System.currentTimeMillis() >> 32); L46: StringUtil.appendHex(buf, lowTime); L47: St...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      1.8K bytes
  10. FavoriteLog.java

    DateTimeFormatter.ISO_INSTANT.format(zdt)); L80: } else { L81: super.addFieldToSource(sourceMap, field, value); L82: } L83: } L84: L85: @Override L86: public String toString() { L87: return "FavoriteLog [createdAt=" + createdAt + ", url=" + url + ", docId=" + docId + ", queryId=" + queryId + ", userInfoId=" L88: + userInfoId + ", docMeta=" + docMeta + "]"; L89: } L90: L91: @Override L92: public String getEventType() { L93: return "favorite";...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.7K bytes
Back to top