- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 1,456 for created (0.04 sec)
-
UnsignedLongs.java
L434: } L435: L436: /** L437: * Returns a string representation of x, where x is treated as unsigned. L438: * L439: * <p><b>Java 8+ users:</b> use {@link Long#toUnsignedString(long)} instead. L440: */ L441: public static String toString(long x) { L442: return toString(x, 10); L443: } L444: L445: /** L446: * Returns a string representation of {@code x} for the given radix, where {@code x} is treated as L447: * unsigned. L448: * L449: * <p><b>Java 8+ users:</b> use {@link Lon...github.com/google/guava/android/guava/src/com/g...Mon Aug 12 21:04:48 UTC 2024 17.6K bytes -
CollectionTestSuiteBuilder.java
E> gen) { L71: this.gen = gen; L72: } L73: L74: @Override L75: public SampleElements<E> samples() { L76: return gen.samples(); L77: } L78: L79: @Override L80: public Collection<E> create(Object... elements) { L81: return SerializableTester.reserialize(gen.create(elements)); L82: } L83: L84: @Override L85: public E[] createArray(int length) { L86: return gen.createArray(length); L87: } L88: L89: @Override L90: public Iterable<E> order(List<E> insertionOrder)...github.com/google/guava/android/guava-testlib/s...Wed Aug 18 22:49:45 UTC 2021 3.6K bytes -
web-platform-test-urltestdata.txt
L323:# Invalid escaping should trigger the regular host error handling. L324:http://%3g%78%63%30%2e%30%32%35%30%2E.01 L325: L326:# Something that isn't exactly an IP should get treated as a host and L327:# spaces escaped. L328:http://192.168.0.1\shello L329: L330:# Fullwidth and escaped UTF-8 fullwidth should still be treated as IP. L331:# These are "0Xc0.0250.01" in fullwidth. L332:http://\uff10\uff38\uff43\uff10\uff0e\uff10\uff12\uff15\uff10\uff0e\uff10\uff11 s:http p:/ h:192.168.0.1 L333: L334:#...github.com/square/okhttp/okhttp/src/test/resour...Wed Dec 20 23:27:07 UTC 2023 14.3K bytes -
GcFinalizationTest.java
Hint to the JIT that unused is unreachable L56: GcFinalization.await(latch); L57: assertEquals(0, latch.getCount()); L58: } L59: L60: public void testAwaitDone_future() { L61: final SettableFuture<@Nullable Void> future = SettableFuture.create(); L62: Object unused = L63: new Object() { L64: @SuppressWarnings({"removal", "Finalize"}) // b/260137033 L65: @Override L66: protected void finalize() { L67: future.set(null); L68: } L69:...github.com/google/guava/guava-testlib/test/com/...Thu Oct 17 02:42:09 UTC 2024 7.9K bytes -
ListsTest.java
L117: suite.addTestSuite(ListsTest.class); L118: L119: suite.addTest( L120: ListTestSuiteBuilder.using( L121: new TestStringListGenerator() { L122: @Override L123: protected List<String> create(String[] elements) { L124: String[] rest = new String[elements.length - 1]; L125: arraycopy(elements, 1, rest, 0, elements.length - 1); L126: return Lists.asList(elements[0], rest); L127: ...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 16:15:19 UTC 2024 35K bytes -
ListsTest.java
L117: suite.addTestSuite(ListsTest.class); L118: L119: suite.addTest( L120: ListTestSuiteBuilder.using( L121: new TestStringListGenerator() { L122: @Override L123: protected List<String> create(String[] elements) { L124: String[] rest = new String[elements.length - 1]; L125: arraycopy(elements, 1, rest, 0, elements.length - 1); L126: return Lists.asList(elements[0], rest); L127: ...github.com/google/guava/guava-tests/test/com/go...Wed Oct 30 16:15:19 UTC 2024 35K bytes -
DataConfigDbm.java
"boost", null, null, Float.class, "boost", null, false, false, false, "Float", 0, L147: 0, null, null, false, null, null, null, null, null, false); L148: protected final ColumnInfo _columnCreatedBy = cci("createdBy", "createdBy", null, null, String.class, "createdBy", null, false, false, L149: false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); L150: 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 13.8K bytes -
GroupBhv.java
Pair<>(e.getKey(), (String) e.getValue())).collect(Collectors.toMap(Pair::getFirst, Pair::getSecond))); L51: return result; L52: } catch (InstantiationException | IllegalAccessException e) { L53: final String msg = "Cannot create a new instance: " + entityType.getName(); L54: throw new IllegalBehaviorStateException(msg, e); L55: } L56: } L57:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.2K bytes -
DictionaryManagerTest.java
) throws Exception { L59: final DictionaryManager dictionaryManager = new DictionaryManager(); L60: final SynonymCreator synonymCreator = new SynonymCreator(); L61: final SynonymFile synonymFile = (SynonymFile) synonymCreator.create(file1.getPath(), new Date()); L62: dictionaryManager.store(synonymFile, file1); L63: final DictionaryFile<? extends DictionaryItem>[] synonymFiles = dictionaryManager.getDictionaryFiles(); L64: assertEquals(1, synonymFiles.length);...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.4K bytes -
ListLastIndexOfTester.java
REJECTS_DUPLICATES_AT_CREATION) L49: @CollectionSize.Require(absent = {ZERO, ONE}) L50: public void testLastIndexOf_duplicate() { L51: E[] array = createSamplesArray(); L52: array[getNumElements() / 2] = e0(); L53: collection = getSubjectGenerator().create(array); L54: assertEquals( L55: "lastIndexOf(duplicate) should return index of last occurrence", L56: getNumElements() / 2, L57: getList().lastIndexOf(e0())); L58: } L59:}...github.com/google/guava/android/guava-testlib/s...Wed Jul 24 20:12:35 UTC 2024 2.2K bytes