- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 121 for 150 (0.02 sec)
-
gradle/libs.versions.toml
[versions] biz-aQute-bnd = "6.4.0" checkStyle = "10.19.0" com-squareup-moshi = "1.15.1" com-squareup-okio = "3.9.1" de-mannodermaus-junit5 = "1.5.0" graalvm = "22.3.2" kotlinx-serialization = "1.6.3" ksp = "1.9.24-1.0.20" mockserverClient = "5.15.0" org-bouncycastle = "1.76" org-conscrypt = "2.5.2" org-jetbrains-coroutines = "1.8.1" org-jetbrains-kotlin = "1.9.25" org-junit-jupiter = "5.11.0" retrofit = "2.11.0"
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Oct 28 11:53:44 UTC 2024 - 7.5K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java
* to create multiple escaper instances that have the same character replacement mapping consider * using {@link ArrayBasedEscaperMap}. * * @author Sven Mawson * @author David Beaumont * @since 15.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ArrayBasedCharEscaper extends CharEscaper { // The replacement array (see ArrayBasedEscaperMap). private final char[][] replacements;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 6.3K bytes - Viewed (0) -
android/guava/src/com/google/common/xml/XmlEscapers.java
* href="http://www.w3.org/TR/2008/REC-xml-20081126/#syntax">2.4</a> of the XML specification. * * @author Alex Matevossian * @author David Beaumont * @since 15.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public class XmlEscapers { private XmlEscapers() {} private static final char MIN_ASCII_CONTROL_CHAR = 0x00;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/net/UrlEscapers.java
* escaping with {@link com.google.common.html.HtmlEscapers} or {@link * com.google.common.xml.XmlEscapers}. * * @author David Beaumont * @author Chris Povirk * @since 15.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public final class UrlEscapers { private UrlEscapers() {} // For each xxxEscaper() method, please add links to external reference pages
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/DiscreteDomain.java
* * <p>This method always returns the same object. That object is serializable; deserializing it * results in the same object too. * * @since 15.0 */ public static DiscreteDomain<BigInteger> bigIntegers() { return BigIntegerDomain.INSTANCE; } private static final class BigIntegerDomain extends DiscreteDomain<BigInteger>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 10.3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/UrlEscapers.java
* escaping with {@link com.google.common.html.HtmlEscapers} or {@link * com.google.common.xml.XmlEscapers}. * * @author David Beaumont * @author Chris Povirk * @since 15.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public final class UrlEscapers { private UrlEscapers() {} // For each xxxEscaper() method, please add links to external reference pages
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/io/CharStreams.java
if (amt == 0) { throw new EOFException(); } n -= amt; } } /** * Returns a {@link Writer} that simply discards written chars. * * @since 15.0 */ public static Writer nullWriter() { return NullWriter.INSTANCE; } private static final class NullWriter extends Writer { private static final NullWriter INSTANCE = new NullWriter();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 17 14:35:11 UTC 2023 - 10.9K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrKMSNotConfigured-145] _ = x[ErrKMSKeyNotFoundException-146] _ = x[ErrKMSDefaultKeyAlreadyConfigured-147] _ = x[ErrNoAccessKey-148] _ = x[ErrInvalidToken-149] _ = x[ErrEventNotification-150] _ = x[ErrARNNotification-151] _ = x[ErrRegionNotification-152] _ = x[ErrOverlappingFilterNotification-153] _ = x[ErrFilterNameInvalid-154] _ = x[ErrFilterNamePrefix-155] _ = x[ErrFilterNameSuffix-156]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 21.4K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hashing.java
* * @since 15.0 */ public static HashFunction sipHash24() { return SipHashFunction.SIP_HASH_24; } /** * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit * SipHash-2-4 algorithm</a> using the given seed. * * @since 15.0 */ public static HashFunction sipHash24(long k0, long k1) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 29.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/SuppliersTest.java
assertEquals(10, (int) memoizedSupplier.get()); // it still should only have executed once due to memoization assertEquals(1, countingSupplier.calls); Thread.sleep(150); assertEquals(20, (int) memoizedSupplier.get()); // old value expired assertEquals(2, countingSupplier.calls); assertEquals(20, (int) memoizedSupplier.get());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 17.9K bytes - Viewed (0)