- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 1,434 for created (0.05 sec)
-
ByteArrayAsListTest.java
L128: } L129: L130: @Override L131: public List<Byte> create(Object... elements) { L132: Byte[] array = new Byte[elements.length]; L133: int i = 0; L134: for (Object e : elements) { L135: array[i++] = (Byte) e; L136: } L137: return create(array); L138: } L139: L140: /** L141: * Creates a new collection containing the given elements; implement this method instead of L142: * {@link #create(Object...)}. L143: */ L144: protected abstract List<Byte>...github.com/google/guava/guava-tests/test/com/go...Thu Jun 01 09:32:35 UTC 2023 5.5K bytes -
LongArrayAsListTest.java
L128: } L129: L130: @Override L131: public List<Long> create(Object... elements) { L132: Long[] array = new Long[elements.length]; L133: int i = 0; L134: for (Object e : elements) { L135: array[i++] = (Long) e; L136: } L137: return create(array); L138: } L139: L140: /** L141: * Creates a new collection containing the given elements; implement this method instead of L142: * {@link #create(Object...)}. L143: */ L144: protected abstract List<Long>...github.com/google/guava/guava-tests/test/com/go...Thu Jun 01 09:32:35 UTC 2023 5.5K bytes -
SetTestSuiteBuilder.java
gen) { L94: this.gen = gen; L95: } L96: L97: @Override L98: public SampleElements<E> samples() { L99: return gen.samples(); L100: } L101: L102: @Override L103: public Set<E> create(Object... elements) { L104: return (Set<E>) SerializableTester.reserialize(gen.create(elements)); L105: } L106: L107: @Override L108: public E[] createArray(int length) { L109: return gen.createArray(length); L110: } L111: L112: @Override L113: public Iterable<E> order(List<E>...github.com/google/guava/guava-testlib/src/com/g...Wed Oct 30 16:15:19 UTC 2024 4.7K bytes -
SetMultimapTestSuiteBuilder.java
EntriesGenerator( L115: OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>> multimapGenerator) { L116: super(multimapGenerator); L117: } L118: L119: @Override L120: public Set<Entry<K, V>> create(Object... elements) { L121: return (Set<Entry<K, V>>) super.create(elements); L122: } L123: } L124: L125: static class MultimapGetGenerator<K, V> L126: extends MultimapTestSuiteBuilder.MultimapGetGenerator<K, V, SetMultimap<K, V>> L127: implements TestSetGenerator<V>...github.com/google/guava/android/guava-testlib/s...Wed Oct 30 16:15:19 UTC 2024 5.6K bytes -
AtomicLongMap.java
this.map = checkNotNull(map); L69: } L70: L71: /** Creates an {@code AtomicLongMap}. */ L72: public static <K> AtomicLongMap<K> create() { L73: return new AtomicLongMap<>(new ConcurrentHashMap<>()); L74: } L75: L76: /** Creates an {@code AtomicLongMap} with the same mappings as the specified {@code Map}. */ L77: public static <K> AtomicLongMap<K> create(Map<? extends K, ? extends Long> m) { L78: AtomicLongMap<K> result = create(); L79: result.putAll(m); L80: return result; L81:...github.com/google/guava/guava/src/com/google/co...Mon Apr 01 16:15:01 UTC 2024 11.8K bytes -
TestSortedMapGenerator.java
a key less than the keys of the {@link #samples()} but greater than the L44: * key of {@link #belowSamplesLesser()}. L45: */ L46: Entry<K, V> belowSamplesGreater(); L47: L48: /** L49: * Returns an entry with a key greater than the keys of the {@link #samples()} but less than the L50: * key of {@link #aboveSamplesGreater()}. L51: */ L52: Entry<K, V> aboveSamplesLesser(); L53: L54: /** L55: * Returns an entry with a key greater than the keys of the {@link #samples()} and greater than...github.com/google/guava/android/guava-testlib/s...Wed Feb 21 16:49:06 UTC 2024 1.9K bytes -
CreateForm.java
public String parameters; L59: L60: @Required L61: @Size(max = 1000) L62: public String webConfigId; L63: L64: @Size(max = 1000) L65: public String createdBy; L66: L67: @ValidateTypeFailure L68: public Long createdTime; L69: L70: public void initialize() { L71: crudMode = CrudMode.CREATE; L72: createdBy = ComponentUtil.getSystemHelper().getUsername(); L73: createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); L74: } L75:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.9K bytes -
CreateForm.java
public String parameters; L56: L57: @Required L58: @Size(max = 1000) L59: public String fileConfigId; L60: L61: @Size(max = 1000) L62: public String createdBy; L63: L64: @ValidateTypeFailure L65: public Long createdTime; L66: L67: public void initialize() { L68: crudMode = CrudMode.CREATE; L69: createdBy = ComponentUtil.getSystemHelper().getUsername(); L70: createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); L71: } L72: L73:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.9K bytes -
CreateForm.java
public Float boost; L54: L55: @Size(max = 1000) L56: public String virtualHost; L57: L58: @Size(max = 255) L59: public String createdBy; L60: L61: @ValidateTypeFailure L62: public Long createdTime; L63: L64: public void initialize() { L65: crudMode = CrudMode.CREATE; L66: maxSize = 10; L67: boost = 100.0f; L68: createdBy = ComponentUtil.getSystemHelper().getUsername(); L69: createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); L70:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.9K bytes -
HashCode.java
/** L104: * Returns whether this {@code HashCode} and that {@code HashCode} have the same value, given that L105: * they have the same number of bits. L106: */ L107: abstract boolean equalsSameBits(HashCode that); L108: L109: /** L110: * Creates a 32-bit {@code HashCode} representation of the given int value. The underlying bytes L111: * are interpreted in little endian order. L112: * L113: * @since 15.0 (since 12.0 in HashCodes) L114: */ L115: public static HashCode fromInt(int...github.com/google/guava/guava/src/com/google/co...Wed Oct 30 19:54:59 UTC 2024 12.6K bytes