- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 216 for growing (0.06 sec)
-
android/guava/src/com/google/common/graph/InvalidatableSet.java
- public int hashCode() {
- return delegate.hashCode();
- }
- private void validate() {
- // Don't use checkState(), because we don't want the overhead of generating the error message
- // unless it's actually going to be used; validate() is called for all set method calls, so it
- // needs to be fast.
- // (We could instead generate the message once, when the set is created, but zero is better.)
- if (!validator.get()) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 17:29:38 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FilteredEntryMultimap.java
- return MoreObjects.firstNonNull(asMap().remove(key), unmodifiableEmptyCollection());
- }
- Collection<V> unmodifiableEmptyCollection() {
- // These return false, rather than throwing a UOE, on remove calls.
- return (unfiltered instanceof SetMultimap)
- ? Collections.<V>emptySet()
- : Collections.<V>emptyList();
- }
- @Override
- public void clear() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 12.1K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Sep 08 20:36:53 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/en/docs/tutorial/schema-extra-example.md
- ////
- When you do this, the examples will be part of the internal **JSON Schema** for that body data.
- Nevertheless, at the <abbr title="2023-08-26">time of writing this</abbr>, Swagger UI, the tool in charge of showing the docs UI, doesn't support showing multiple examples for the data in **JSON Schema**. But read below for a workaround.
- ### OpenAPI-specific `examples`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java
- multimap.put("foo", 3);
- assertTrue(multimap.replaceValues("foo", asList(2, 4)) instanceof RandomAccess);
- assertTrue(multimap.replaceValues("bar", asList(2, 4)) instanceof RandomAccess);
- }
- /** Test throwing ConcurrentModificationException when a sublist's ancestor's delegate changes. */
- public void testSublistConcurrentModificationException() {
- ListMultimap<String, Integer> multimap = create();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 15 17:36:06 UTC 2024 - 6.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MinimalCollection.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.8K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java
- */
- return (int) Math.pow(a, 1.0 / concentration);
- }
- @AfterExperiment
- void tearDown() {
- double req = requests.get();
- double hit = req - misses.get();
- // Currently, this is going into /dev/null, but I'll fix that
- System.out.println("hit rate: " + hit / req);
- }
- // for proper distributions later:
- // import JSci.maths.statistics.ProbabilityDistribution;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.4K bytes - Viewed (0) -
CODE_OF_CONDUCT.md
- * Using welcoming and inclusive language.
- * Being respectful of differing viewpoints and experiences.
- * Gracefully accepting constructive criticism.
- * Focusing on what is best for the community.
- * Showing empathy towards other community members.
- Examples of unacceptable behavior by participants include:
- * The use of sexualized language or imagery and unwelcome sexual attention or
- advances.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Feb 05 18:43:16 UTC 2021 - 5.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java
- accumulator.add(ONE_VALUE, OTHER_ONE_VALUE);
- for (int power = 1; power < Long.SIZE - 1; power++) {
- accumulator.addAll(accumulator.snapshot());
- }
- // Should overflow without throwing.
- accumulator.addAll(accumulator.snapshot());
- assertThat(accumulator.count()).isLessThan(0L);
- }
- public void testXStats() {
- assertStatsApproxEqual(EMPTY_STATS_ITERABLE, emptyAccumulator.xStats());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 03 21:17:33 UTC 2024 - 23.3K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0)