Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2091 - 2100 of 3,127 for xcode (0.02 sec)

  1. SECURITY.md

    1. If you think you found a vulnerability, and even if you are not sure about it, please report it right away by sending an email to: ******@****.***. Please try to be as explicit as possible, describing all the steps and example code to reproduce the security issue.
    2.  
    3. I (the author, [@tiangolo](https://twitter.com/tiangolo)) will review it thoroughly and get back to you.
    4.  
    5. ## Public Discussions
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Sep 11 16:15:49 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/features/TesterAnnotation.java

    1. import java.lang.annotation.ElementType;
    2. import java.lang.annotation.Retention;
    3. import java.lang.annotation.RetentionPolicy;
    4. import java.lang.annotation.Target;
    5.  
    6. /**
    7. * Use this to meta-annotate {@code XxxFeature.Require} annotations, so that those annotations can
    8. * be used to decide whether to apply a test to a given class-under-test.
    9. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jun 14 17:55:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/Authenticate.kt

    1. Request.Builder()
    2. .url("http://publicobject.com/secrets/hellosecret.txt")
    3. .build()
    4.  
    5. client.newCall(request).execute().use { response ->
    6. if (!response.isSuccessful) throw IOException("Unexpected code $response")
    7.  
    8. println(response.body.string())
    9. }
    10. }
    11. }
    12.  
    13. fun main() {
    14. Authenticate().run()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/ListGetTester.java

    1. import static com.google.common.collect.testing.testers.ReflectionFreeAssertThrows.assertThrows;
    2.  
    3. import com.google.common.annotations.GwtCompatible;
    4. import org.junit.Ignore;
    5.  
    6. /**
    7. * A generic JUnit test which tests {@code get()} operations on a list. Can't be invoked directly;
    8. * please see {@link com.google.common.collect.testing.ListTestSuiteBuilder}.
    9. *
    10. * @author Chris Povirk
    11. */
    12. @GwtCompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 20:00:30 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/features/TesterAnnotation.java

    1. import java.lang.annotation.ElementType;
    2. import java.lang.annotation.Retention;
    3. import java.lang.annotation.RetentionPolicy;
    4. import java.lang.annotation.Target;
    5.  
    6. /**
    7. * Use this to meta-annotate {@code XxxFeature.Require} annotations, so that those annotations can
    8. * be used to decide whether to apply a test to a given class-under-test.
    9. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jun 14 17:55:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/MapIsEmptyTester.java

    1. import com.google.common.collect.testing.AbstractMapTester;
    2. import com.google.common.collect.testing.features.CollectionSize;
    3. import org.junit.Ignore;
    4.  
    5. /**
    6. * A generic JUnit test which tests {@code isEmpty()} operations on a map. Can't be invoked
    7. * directly; please see {@link com.google.common.collect.testing.MapTestSuiteBuilder}.
    8. *
    9. * @author Kevin Bourrillion
    10. */
    11. @GwtCompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 20:12:35 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountUnconditionallyTester.java

    1. import com.google.common.annotations.GwtCompatible;
    2. import com.google.errorprone.annotations.CanIgnoreReturnValue;
    3. import org.junit.Ignore;
    4.  
    5. /**
    6. * A generic JUnit test which tests unconditional {@code setCount()} operations on a multiset. Can't
    7. * be invoked directly; please see {@link MultisetTestSuiteBuilder}.
    8. *
    9. * @author Chris Povirk
    10. */
    11. @GwtCompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 20:12:35 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/CollectionIsEmptyTester.java

    1. import com.google.common.collect.testing.AbstractCollectionTester;
    2. import com.google.common.collect.testing.features.CollectionSize;
    3. import org.junit.Ignore;
    4.  
    5. /**
    6. * A generic JUnit test which tests {@code isEmpty()} operations on a collection. Can't be invoked
    7. * directly; please see {@link com.google.common.collect.testing.CollectionTestSuiteBuilder}.
    8. *
    9. * @author Kevin Bourrillion
    10. */
    11. @GwtCompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 20:12:35 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Count.java

    1. */
    2.  
    3. package com.google.common.collect;
    4.  
    5. import com.google.common.annotations.GwtCompatible;
    6. import java.io.Serializable;
    7. import javax.annotation.CheckForNull;
    8.  
    9. /**
    10. * A mutable value of type {@code int}, for multisets to use in tracking counts of values.
    11. *
    12. * @author Louis Wasserman
    13. */
    14. @GwtCompatible
    15. @ElementTypesAreNonnullByDefault
    16. final class Count implements Serializable {
    17. private int value;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Aug 05 00:40:25 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. licenses/github.com/russross/blackfriday/v2/LICENSE.txt

    1. > All rights reserved.
    2. >
    3. > Redistribution and use in source and binary forms, with or without
    4. > modification, are permitted provided that the following conditions
    5. > are met:
    6. >
    7. > 1. Redistributions of source code must retain the above copyright
    8. > notice, this list of conditions and the following disclaimer.
    9. >
    10. > 2. Redistributions in binary form must reproduce the above
    11. > copyright notice, this list of conditions and the following
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Apr 23 04:14:15 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top