Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2281 - 2290 of 3,069 for xcode (0.06 sec)

  1. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

    1. *
    2. * @author koichik
    3. */
    4. public class ClIllegalArgumentException extends IllegalArgumentException {
    5.  
    6. private static final long serialVersionUID = -3701473506893554853L;
    7.  
    8. /** {@code null} である引数の名前 */
    9. protected final String argName;
    10.  
    11. /** メッセージコード */
    12. protected final String messageCode;
    13.  
    14. /** メッセージの引数 */
    15. protected final Object[] args;
    16.  
    17. /**
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/response-headers.md

    1. And if you declared a `response_model`, it will still be used to filter and convert the object you returned.
    2.  
    3. **FastAPI** will use that *temporal* response to extract the headers (also cookies and status code), and will put them in the final response that contains the value you returned, filtered by any `response_model`.
    4.  
    5. You can also declare the `Response` parameter in dependencies, and set headers (and cookies) in them.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. android-test/src/androidTest/java/okhttp/android/test/letsencrypt/LetsEncryptClientTest.kt

    1. val request =
    2. Request.Builder()
    3. .url("https://valid-isrgrootx1.letsencrypt.org/robots.txt")
    4. .build()
    5. client.newCall(request).execute().use { response ->
    6. assertThat(response.code).isEqualTo(404)
    7. assertThat(response.protocol).isEqualTo(Protocol.HTTP_2)
    8. }
    9. }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionClearTester.java

    1. import com.google.common.collect.testing.features.CollectionSize;
    2. import java.util.ConcurrentModificationException;
    3. import java.util.Iterator;
    4. import org.junit.Ignore;
    5.  
    6. /**
    7. * A generic JUnit test which tests {@code clear()} operations on a collection. Can't be invoked
    8. * directly; please see {@link com.google.common.collect.testing.CollectionTestSuiteBuilder}.
    9. *
    10. * @author George van den Driessche
    11. */
    12. @GwtCompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 20:00:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionToStringTester.java

    1. import com.google.common.collect.testing.features.CollectionFeature;
    2. import com.google.common.collect.testing.features.CollectionSize;
    3. import org.junit.Ignore;
    4.  
    5. /**
    6. * A generic JUnit test which tests {@code toString()} 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 Oct 30 16:15:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapEntrySetTester.java

    1. import com.google.common.collect.testing.features.CollectionSize;
    2. import com.google.common.collect.testing.features.MapFeature;
    3. import java.util.Map.Entry;
    4. import org.junit.Ignore;
    5.  
    6. /** Tester for {@code BiMap.entrySet} and methods on the entries in the set. */
    7. @GwtCompatible
    8. @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    9. @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 19:10:20 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/cache/TestingRemovalListeners.java

    1. /**
    2. * Utility {@link RemovalListener} implementations intended for use in testing.
    3. *
    4. * @author mike nonemacher
    5. */
    6. @GwtCompatible(emulated = true)
    7. class TestingRemovalListeners {
    8.  
    9. /** Returns a new no-op {@code RemovalListener}. */
    10. static <K, V> NullRemovalListener<K, V> nullRemovalListener() {
    11. return new NullRemovalListener<>();
    12. }
    13.  
    14. /** Type-inferring factory method for creating a {@link QueuingRemovalListener}. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/CollectionToStringTester.java

    1. import com.google.common.collect.testing.features.CollectionFeature;
    2. import com.google.common.collect.testing.features.CollectionSize;
    3. import org.junit.Ignore;
    4.  
    5. /**
    6. * A generic JUnit test which tests {@code toString()} 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 Oct 30 16:15:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/TypeParameter.java

    1. import java.lang.reflect.Type;
    2. import java.lang.reflect.TypeVariable;
    3. import javax.annotation.CheckForNull;
    4.  
    5. /**
    6. * Captures a free type variable that can be used in {@link TypeToken#where}. For example:
    7. *
    8. * <pre>{@code
    9. * static <T> TypeToken<List<T>> listOf(Class<T> elementType) {
    10. * return new TypeToken<List<T>>() {}
    11. * .where(new TypeParameter<T>() {}, elementType);
    12. * }
    13. * }</pre>
    14. *
    15. * @author Ben Yu
    16. * @since 12.0
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. guava-tests/benchmark/com/google/common/math/DoubleMathRoundingBenchmark.java

    1. import com.google.caliper.BeforeExperiment;
    2. import com.google.caliper.Benchmark;
    3. import com.google.caliper.Param;
    4. import java.math.RoundingMode;
    5.  
    6. /**
    7. * Benchmarks for the rounding methods of {@code DoubleMath}.
    8. *
    9. * @author Louis Wasserman
    10. */
    11. public class DoubleMathRoundingBenchmark {
    12. private static final double[] doubleInIntRange = new double[ARRAY_SIZE];
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.6K bytes
    - Viewed (0)
Back to top