Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2251 - 2260 of 3,127 for xcode (0.02 sec)

  1. guava/src/com/google/common/collect/ImmutableMapValues.java

    1. import java.io.Serializable;
    2. import java.util.Map.Entry;
    3. import java.util.Spliterator;
    4. import java.util.function.Consumer;
    5. import javax.annotation.CheckForNull;
    6.  
    7. /**
    8. * {@code values()} implementation for {@link ImmutableMap}.
    9. *
    10. * @author Jesse Wilson
    11. * @author Kevin Bourrillion
    12. */
    13. @GwtCompatible(emulated = true)
    14. @ElementTypesAreNonnullByDefault
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/ByteSinkTest.java

    1. import static org.junit.Assert.assertThrows;
    2.  
    3. import java.io.ByteArrayInputStream;
    4. import java.io.IOException;
    5. import java.io.OutputStream;
    6. import java.util.EnumSet;
    7.  
    8. /**
    9. * Tests for the default implementations of {@code ByteSink} methods.
    10. *
    11. * @author Colin Decker
    12. */
    13. public class ByteSinkTest extends IoTestCase {
    14.  
    15. private final byte[] bytes = newPreFilledByteArray(10000);
    16.  
    17. private TestByteSink sink;
    18.  
    19. @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java

    1. * of the public API. In particular, this class can be changed or deleted without prior notice.
    2. *
    3. * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead
    4. */
    5. @Deprecated(since = "4.0.0")
    6. public class ArtifactDescriptorUtils {
    7.  
    8. public static Artifact toPomArtifact(Artifact artifact) {
    9. Artifact pomArtifact = artifact;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/body.md

    1. Для поддержки этого даже были внесены некоторые изменения в сам Pydantic.
    2.  
    3. На всех предыдущих скриншотах используется <a href="https://code.visualstudio.com" class="external-link" target="_blank">Visual Studio Code</a>.
    4.  
    5. Но у вас будет такая же поддержка и с <a href="https://www.jetbrains.com/pycharm/" class="external-link" target="_blank">PyCharm</a>, и вообще с любым редактором Python:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/UrlEscapers.java

    1. * the License.
    2. */
    3.  
    4. package com.google.common.net;
    5.  
    6. import com.google.common.annotations.GwtCompatible;
    7. import com.google.common.escape.Escaper;
    8.  
    9. /**
    10. * {@code Escaper} instances suitable for strings to be included in particular sections of URLs.
    11. *
    12. * <p>If the resulting URLs are inserted into an HTML or XML document, they will require additional
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

    1. * found in the map.
    2. */
    3. protected abstract V getValueNotInPopulatedMap() throws UnsupportedOperationException;
    4.  
    5. /**
    6. * Constructor that assigns {@code supportsIteratorRemove} the same value as {@code
    7. * supportsRemove}.
    8. */
    9. protected MapInterfaceTest(
    10. boolean allowsNullKeys,
    11. boolean allowsNullValues,
    12. boolean supportsPut,
    13. boolean supportsRemove,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. docs/em/docs/contributing.md

    1. /// tip
    2.  
    3. 👑 ("🛂") 🇪🇸 🇪🇸, 🔎 `docs/en/`.
    4.  
    5. ///
    6.  
    7. 🔜 🏃 🖖 💽 🩺 🇪🇸:
    8.  
    9. <div class="termy">
    10.  
    11. ```console
    12. // Use the command "live" and pass the language code as a CLI argument
    13. $ python ./scripts/docs.py live es
    14.  
    15. <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    16. <span style="color: green;">[INFO]</span> Start watching changes
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt

    1. * prefer other mechanisms where they exist, such as with
    2. * [okhttp3.internal.platform.AndroidPlatform.AndroidCertificateChainCleaner].
    3. *
    4. * This class includes code from [Conscrypt's][Conscrypt] [TrustManagerImpl] and
    5. * [TrustedCertificateIndex].
    6. *
    7. * [Conscrypt]: https://conscrypt.org/
    8. */
    9. class BasicCertificateChainCleaner(
    10. private val trustRootIndex: TrustRootIndex,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/ReflectionFreeAssertThrows.java

    1. import java.util.concurrent.ExecutionException;
    2. import java.util.concurrent.TimeoutException;
    3. import junit.framework.AssertionFailedError;
    4. import org.checkerframework.checker.nullness.qual.Nullable;
    5.  
    6. /** Replacements for JUnit's {@code assertThrows} that work under GWT/J2CL. */
    7. @GwtCompatible(emulated = true)
    8. @ElementTypesAreNonnullByDefault
    9. final class ReflectionFreeAssertThrows {
    10. interface ThrowingRunnable {
    11. void run() throws Throwable;
    12. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 20:00:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ForwardingListTest.java

    1. import java.util.ListIterator;
    2. import junit.framework.Test;
    3. import junit.framework.TestCase;
    4. import junit.framework.TestSuite;
    5. import org.checkerframework.checker.nullness.qual.Nullable;
    6.  
    7. /**
    8. * Tests for {@code ForwardingList}.
    9. *
    10. * @author Robert Konigsberg
    11. * @author Louis Wasserman
    12. */
    13. public class ForwardingListTest extends TestCase {
    14. static final class StandardImplForwardingList<T> extends ForwardingList<T> {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top