Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 291 - 300 of 722 for jour (0.02 seconds)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

          // if "formalType" is <? super Foo>, "this" can be:
          // Foo, SuperFoo, <? super Foo> or <? super SuperFoo>.
          return every(your.getUpperBounds()).isSupertypeOf(runtimeType)
              && every(your.getLowerBounds()).isSubtypeOf(runtimeType);
        }
        return canonicalizeWildcardsInType(runtimeType).equals(canonicalizeWildcardsInType(formalType));
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.8K bytes
    - Click Count (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      /** Flag in the opcode which indicates a control frame. */
      internal const val OPCODE_FLAG_CONTROL = 8
    
      /**
       * Byte 1 flag for whether the payload data is masked.
       *
       * If this flag is set, the next four
       * bytes represent the mask key. These bytes appear after any additional bytes specified by [B1_MASK_LENGTH].
       */
      internal const val B1_FLAG_MASK = 128
    
      /**
       * Byte 1 mask for the payload length.
       *
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    import junit.framework.TestSuite;
    
    /**
     * Creates, based on your criteria, a JUnit test suite that exhaustively tests a List
     * implementation.
     *
     * @author George van den Driessche
     */
    @GwtIncompatible
    public final class ListTestSuiteBuilder<E>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  4. samples/guide/src/main/java/okhttp3/recipes/RequestBodyCompression.java

    import okhttp3.Response;
    
    public final class RequestBodyCompression {
      /**
       * The Google API KEY for OkHttp recipes. If you're using Google APIs for anything other than
       * running these examples, please request your own client ID!
       *
       * https://console.developers.google.com/project
       */
      public static final String GOOGLE_API_KEY = "AIzaSyAx2WZYe0My0i-uGurpvraYJxO7XNbwiGs";
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Jun 04 17:43:43 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  5. architecture/standards/0008-use-nullaway.md

    # ADR-0008 - Use NullAway for null checking
    
    ## Status
    
    - ACCEPTED on 2025-08-06
    
    ## Context
    
    Our codebase uses `null` extensively to represent an absence of value or optionality of the argument.
    We utilize nullness annotations in Java code and somewhat rely on IDE warnings to guide us.
    However, the Java code we have is not fully annotated, which causes several consequences:
    * IDE warnings can be misleading
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/EvictingQueue.java

         * have the same nullness as E." Since we can't, we declare it to return nullable elements, and
         * we can override it in our non-null-guaranteeing subtypes to present a better signature to
         * their users.
         *
         * However, the checker *we* use has this special knowledge about `Collection.toArray()` anyway,
         * so in our implementation code, we can rely on that. That's why the expression below
         * type-checks.
         */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/ForwardingMultiset.java

     * not</b> change the behavior of {@link #add(Object)}, which can lead to unexpected behavior. In
     * this case, you should override {@code add(Object)} as well, either providing your own
     * implementation, or delegating to the provided {@code standardAdd} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  8. guava-tests/test/com/google/common/hash/HashFunctionEnum.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * An enum that contains all of the known hash functions.
     *
     * @author Kurt Alfred Kluever
     */
    @SuppressWarnings("deprecation") // We still need to test our deprecated APIs.
    @NullUnmarked
    enum HashFunctionEnum {
      ADLER32(adler32()),
      CRC32(crc32()),
      GOOD_FAST_HASH_32(goodFastHash(32)),
      GOOD_FAST_HASH_64(goodFastHash(64)),
      GOOD_FAST_HASH_128(goodFastHash(128)),
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/io/Closeables.java

       *
       * - It might be preferable to be consistent with the JDK precedent (which they stuck with even
       *   for "UncheckedIOException").
       *
       * - If we change the name, some of our callers break because our Android Lint ParameterName check
       *   doesn't make the exception for com.google.common that internal Error Prone does: b/386402967.
       */
      @SuppressWarnings("IdentifierName")
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/WrongType.java

     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A type which will never be used as the element type of any collection in our tests, and so can be
     * used to test how a Collection behaves when given input of the wrong type.
     */
    @GwtCompatible
    public enum WrongType {
      VALUE
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 934 bytes
    - Click Count (0)
Back to Top