Search Options

Results per page
Sort
Preferred Languages
Advance

Results 431 - 440 of 709 for failed (0.03 sec)

  1. ElementTypesAreNonnullByDefault.java

    either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.reflect; L18: L19:import static java.lang.annotation.ElementType.FIELD; L20:import static java.lang.annotation.ElementType.METHOD; L21:import static java.lang.annotation.ElementType.PARAMETER; L22:import static java.lang.annotation.ElementType.TYPE; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24:...
    github.com/google/guava/android/guava/src/com/g...
    Tue Aug 17 15:44:29 UTC 2021
      1.5K bytes
  2. ElementTypesAreNonnullByDefault.java

    or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.collect.testing.testers; L18: L19:import static java.lang.annotation.ElementType.FIELD; L20:import static java.lang.annotation.ElementType.METHOD; L21:import static java.lang.annotation.ElementType.PARAMETER; L22:import static java.lang.annotation.ElementType.TYPE; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24:...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Feb 21 16:49:06 UTC 2024
      1.5K bytes
  3. ElementTypesAreNonnullByDefault.java

    either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.collect; L18: L19:import static java.lang.annotation.ElementType.FIELD; L20:import static java.lang.annotation.ElementType.METHOD; L21:import static java.lang.annotation.ElementType.PARAMETER; L22:import static java.lang.annotation.ElementType.TYPE; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24:...
    github.com/google/guava/guava/src/com/google/co...
    Thu May 27 11:06:23 UTC 2021
      1.5K bytes
  4. ElementTypesAreNonnullByDefault.java

    either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.escape; L18: L19:import static java.lang.annotation.ElementType.FIELD; L20:import static java.lang.annotation.ElementType.METHOD; L21:import static java.lang.annotation.ElementType.PARAMETER; L22:import static java.lang.annotation.ElementType.TYPE; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24:...
    github.com/google/guava/guava/src/com/google/co...
    Wed Apr 14 18:45:15 UTC 2021
      1.5K bytes
  5. ElementTypesAreNonnullByDefault.java

    either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.primitives; L18: L19:import static java.lang.annotation.ElementType.FIELD; L20:import static java.lang.annotation.ElementType.METHOD; L21:import static java.lang.annotation.ElementType.PARAMETER; L22:import static java.lang.annotation.ElementType.TYPE; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24:...
    github.com/google/guava/guava/src/com/google/co...
    Thu Apr 22 13:09:25 UTC 2021
      1.5K bytes
  6. AndroidIncompatible.java

    the License. L15: */ L16: L17:package com.google.common.hash; L18: L19:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L20:import static java.lang.annotation.ElementType.CONSTRUCTOR; L21:import static java.lang.annotation.ElementType.FIELD; L22:import static java.lang.annotation.ElementType.METHOD; L23:import static java.lang.annotation.ElementType.TYPE; L24:import static java.lang.annotation.RetentionPolicy.CLASS; L25: L26:import com.google.common.annotations.GwtCompatible; L27:import...
    github.com/google/guava/android/guava-tests/tes...
    Mon Jun 26 15:56:47 UTC 2017
      1.6K bytes
  7. AndroidIncompatible.java

    L16: L17:package com.google.common.collect.testing.features; L18: L19:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L20:import static java.lang.annotation.ElementType.CONSTRUCTOR; L21:import static java.lang.annotation.ElementType.FIELD; L22:import static java.lang.annotation.ElementType.METHOD; L23:import static java.lang.annotation.ElementType.TYPE; L24:import static java.lang.annotation.RetentionPolicy.CLASS; L25: L26:import com.google.common.annotations.GwtCompatible; L27:import...
    github.com/google/guava/guava-testlib/test/com/...
    Thu Sep 15 13:47:32 UTC 2016
      1.6K bytes
  8. AndroidIncompatible.java

    the License. L15: */ L16: L17:package com.google.common.math; L18: L19:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L20:import static java.lang.annotation.ElementType.CONSTRUCTOR; L21:import static java.lang.annotation.ElementType.FIELD; L22:import static java.lang.annotation.ElementType.METHOD; L23:import static java.lang.annotation.ElementType.TYPE; L24:import static java.lang.annotation.RetentionPolicy.CLASS; L25: L26:import com.google.common.annotations.GwtCompatible; L27:import...
    github.com/google/guava/guava-tests/test/com/go...
    Thu Sep 15 13:47:32 UTC 2016
      1.6K bytes
  9. AndroidIncompatible.java

    License. L15: */ L16: L17:package com.google.common.reflect; L18: L19:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L20:import static java.lang.annotation.ElementType.CONSTRUCTOR; L21:import static java.lang.annotation.ElementType.FIELD; L22:import static java.lang.annotation.ElementType.METHOD; L23:import static java.lang.annotation.ElementType.TYPE; L24:import static java.lang.annotation.RetentionPolicy.CLASS; L25: L26:import com.google.common.annotations.GwtCompatible; L27:import...
    github.com/google/guava/guava-tests/test/com/go...
    Thu Sep 15 13:47:32 UTC 2016
      1.6K bytes
  10. interceptors.md

    a response to satisfy the request. If `chain.proceed(request)` is being called more than once previous response bodies must be closed. L27: L28:Interceptors can be chained. Suppose you have both a compressing interceptor and a checksumming interceptor: you'll need to decide whether data is compressed and then checksummed, or checksummed and then compressed. OkHttp uses lists to track interceptors, and interceptors are called in order. L29: L30:![Interceptors Diagram](../assets/images/interceptors@2x.png)...
    github.com/square/okhttp/docs/features/intercep...
    Sun Feb 06 02:19:09 UTC 2022
      8.1K bytes
Back to top