Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Early (0.22 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

      public static final String CROSS_ORIGIN_RESOURCE_POLICY = "Cross-Origin-Resource-Policy";
      /**
       * The HTTP <a href="https://tools.ietf.org/html/rfc8470">{@code Early-Data}</a> header field
       * name.
       *
       * @since 27.0
       */
      public static final String EARLY_DATA = "Early-Data";
      /** The HTTP {@code Expect} header field name. */
      public static final String EXPECT = "Expect";
      /** The HTTP {@code From} header field name. */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  2. common/config/.golangci.yml

            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
            # - name: get-return
            # - name: confusing-naming
            # - name: unexported-naming
            # - name: early-return
            # - name: unused-parameter
            # - name: unnecessary-stmt
            # - name: deep-exit
            # - name: import-shadowing
            # - name: modifies-value-receiver
            # - name: unused-receiver
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

            return source.trailers ?: EMPTY_HEADERS
          }
          if (errorCode != null) {
            throw errorException ?: StreamResetException(errorCode!!)
          }
          throw IllegalStateException("too early; can't read the trailers yet")
        }
      }
    
      /**
       * Sends a reply to an incoming stream.
       *
       * @param outFinished true to eagerly finish the output stream to send data to the remote peer.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 23.2K bytes
    - Viewed (1)
Back to top