- Sort Score
- Result 10 results
- Languages All
Results 931 - 940 of 3,220 for pink (0.06 sec)
-
android/guava/src/com/google/common/collect/ImmutableMultimap.java
/** * A {@link Multimap} whose contents will never change, with many other important properties * detailed at {@link ImmutableCollection}. * * <p><b>Warning:</b> avoid <i>direct</i> usage of {@link ImmutableMultimap} as a type (as with * {@link Multimap} itself). Prefer subtypes such as {@link ImmutableSetMultimap} or {@link * ImmutableListMultimap}, which have well-defined {@link #equals} semantics, thus avoiding a common
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 27.9K bytes - Viewed (0) -
docs/em/docs/advanced/behind-a-proxy.md
## ๐ฌ ๐ โฎ๏ธ Traefik ๐ ๐ช ๐ช ๐ ๐ฅผ ๐ โฎ๏ธ ๐ โก ๐ก โ๏ธ <a href="https://docs.traefik.io/" class="external-link" target="_blank">Traefik</a>. <a href="https://github.com/containous/traefik/releases" class="external-link" target="_blank">โฌ Traefik</a>, โซ๏ธ ๐ ๐ฑ, ๐ ๐ช โ ๐ ๐ & ๐ โซ๏ธ ๐ โช๏ธโก๏ธ ๐ถ. โคด๏ธ โ ๐ `traefik.toml` โฎ๏ธ: ```TOML hl_lines="3" [entryPoints]
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
traverserFactories.put(protocol, factory); } /** * ๆๅฎใฎใฏใฉในใๅบ็นใจใใใใชใฝใผในใใฏใฉในใฎ้ใพใใๆฑใ{@link Traverser}ใ่ฟใใพใใ * <p> * ใใฎใกใฝใใใ่ฟใ{@link Traverser}ใฏใๆๅฎใใใใฏใฉในใFQNใงๅ็ งๅฏ่ฝใชใในใใซใผใใจใใพใใ ไพใใฐๆๅฎใใใใฏใฉในใ * <code>foo.Bar</code>ใงใใใฎใฏใฉในใใกใคใซใ <code>classes/foo/Bar.class</code>ใฎๅ ดๅใ * ใใฎใกใฝใใใ่ฟใ {@link Traverser}ใฏ<code>classes</code>ใใฃใฌใฏใใชไปฅไธใฎใชใฝใผในใฎ้ๅใๆฑใใพใใ * </p> * * @param referenceClass
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 19.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/SubtypeTester.java
@interface TestSubtype { /** Suppresses the assertion on {@link TypeToken#getSubtype}. */ boolean suppressGetSubtype() default false; /** Suppresses the assertion on {@link TypeToken#getSupertype}. */ boolean suppressGetSupertype() default false; } private @Nullable Method method = null; /** Call this in a {@link TestSubtype} public method asserting subtype relationship. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 6.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/Interner.java
import com.google.errorprone.annotations.DoNotMock; /** * Provides similar behavior to {@link String#intern} for any immutable type. Common implementations * are available from the {@link Interners} class. * * <p>Note that {@code String.intern()} has some well-known performance limitations, and should * generally be avoided. Prefer {@link Interners#newWeakInterner} or another {@code Interner} * implementation even for {@code String} interning.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 13 14:30:51 UTC 2023 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java
import java.util.Map; /** * ใญใผใงๅคงๆๅญๅฐๆๅญใๆฐใซใใชใ {@link ArrayMap}ใงใใ * * @author higa ๅคใฎๅ * @param <V> * ๅคใฎๅ */ public class CaseInsensitiveMap<V> extends ArrayMap<String, V> { private static final long serialVersionUID = 1L; /** * {@link CaseInsensitiveMap}ใไฝๆใใพใใ */ public CaseInsensitiveMap() { } /** * {@link CaseInsensitiveMap}ใไฝๆใใพใใ *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.3K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/package-info.java
* * <p>The core interface used to represent caches is {@link Cache}. In-memory caches can be * configured and created using {@link CacheBuilder}, with cache entries being loaded by {@link * CacheLoader}. Statistics about cache performance are exposed using {@link CacheStats}. * * <p>See the Guava User Guide article on <a
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 23 19:57:03 UTC 2023 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
/** * The input futures. After {@link #init}, this field is read only by {@link #afterDone()} (to * propagate cancellation) and {@link #toString()}. To access the futures' <i>values</i>, {@code * AggregateFuture} attaches listeners that hold references to one or more inputs. And in the case * of {@link CombinedFuture}, the user-supplied callback usually has its own references to inputs. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 16.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
} /** * @deprecated Provided only to satisfy the {@link Predicate} interface; use {@link #mightContain} * instead. */ @Deprecated @Override public boolean apply(@ParametricNullness T input) { return mightContain(input); } /** * Puts an element into this {@code BloomFilter}. Ensures that subsequent invocations of {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 26.6K bytes - Viewed (0)