Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for headerValue (0.55 sec)

  1. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

       * if this header is set.
       */
      @get:JvmName("onlyIfCached") val onlyIfCached: Boolean,
      @get:JvmName("noTransform") val noTransform: Boolean,
      @get:JvmName("immutable") val immutable: Boolean,
      internal var headerValue: String?,
    ) {
      @JvmName("-deprecated_noCache")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "noCache"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	}
    	headerVal := strings.Join(valParts, ", ")
    	return &core.HeaderValueOption{
    		AppendAction: core.HeaderValueOption_APPEND_IF_EXISTS_OR_ADD,
    		Header: &core.HeaderValue{
    			Key:   util.AltSvcHeader,
    			Value: headerVal,
    		},
    	}
    }
    
    // SortHeaderValueOption type and the functions below (Len, Less and Swap) are for sort.Stable for type HeaderValueOption
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        responseCode: Int,
        headerName: String,
        headerValue: String,
      ) {
        server.enqueue(
          MockResponse.Builder()
            .code(responseCode)
            .addHeader(headerName, headerValue)
            .addHeader("Location", "/a")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .addHeader(headerName, headerValue)
            .body("a")
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top