Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ResponseHeader (0.3 sec)

  1. tests/integration/telemetry/api/wasmplugin_test.go

    			t.Fatalf("failed to install WasmPlugin: %v", err)
    		}
    		if c.testHostname != "" {
    			sendTrafficToHostname(t, check.ResponseHeader(injectedHeader, c.expectedVersion), c.testHostname)
    		} else {
    			sendTraffic(t, check.ResponseHeader(injectedHeader, c.expectedVersion))
    		}
    	})
    }
    
    func resetWasm(ctx framework.TestContext, pluginName string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResponseResource.java

            return response.getStatusLine().getStatusCode();
        }
    
        public Date getLastModified() {
            String responseHeader = response.getHeader(HttpHeaders.LAST_MODIFIED);
            if (responseHeader == null) {
                return new Date(0);
            }
            try {
                return DateUtils.parseDate(responseHeader);
            } catch (Exception e) {
                return new Date(0);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. tests/integration/ambient/wasm_test.go

    			t.Fatalf("failed to install WasmPlugin: %v", err)
    		}
    		if c.testHostname != "" {
    			sendTrafficToHostname(t, check.ResponseHeader(injectedHeader, "0.0.1"), c.testHostname)
    		} else {
    			sendTraffic(t, check.ResponseHeader(injectedHeader, "0.0.1"))
    		}
    	})
    }
    
    func resetCustomWasmConfig(ctx framework.TestContext, pluginName, path string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. docs/logging/README.md

        "X-Amz-Content-Sha256": "STREAMING-AWS4-HMAC-SHA256-PAYLOAD",
        "X-Amz-Date": "20240509T073810Z",
        "X-Amz-Decoded-Content-Length": "228"
      },
      "responseHeader": {
        "Accept-Ranges": "bytes",
        "Content-Length": "0",
        "ETag": "9fe7a344ef4227d3e53751e9d88ce41e",
        "Server": "MinIO",
        "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/accesslogs_test.go

    					},
    					HTTP:  http,
    					Count: 1,
    					Retry: echo.Retry{
    						Options: append(defaultOptions, retry.Timeout(framework.TelemetryRetryTimeout)),
    					},
    					Check: check.ResponseHeader(injectedHeader, ""),
    				}
    				count = logCount(t, from, testID)
    				_ = cltInstance.CallOrFail(t, httpOpts)
    			} else {
    				GetClientInstances()[0].CallOrFail(t, echo.CallOptions{
    					To: to,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tests/integration/ambient/waypoint_test.go

    								Address: host,
    								Port:    echo.Port{Name: "http"},
    								Scheme:  scheme.HTTP,
    								Count:   10,
    								Check: check.And(
    									check.OK(),
    									check.ResponseHeader("traversed-waypoint", "captured-gateway"),
    								),
    							})
    						})
    					}
    					apps.Captured.ServiceName()
    				})
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/net/http/response.go

    	// Body yields the uncompressed content instead of the compressed
    	// content actually set from the server, ContentLength is set to -1,
    	// and the "Content-Length" and "Content-Encoding" fields are deleted
    	// from the responseHeader. To get the original response from
    	// the server, set Transport.DisableCompression to true.
    	Uncompressed bool
    
    	// Trailer maps trailer keys to values in the same
    	// format as Header.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                } else {
                    contentDispositionValue = contentDispositionType + "; filename*=utf-8''" + encodedName;
                }
                if (logger.isDebugEnabled()) {
                    logger.debug("ResponseHeader: {}: {}", CONTENT_DISPOSITION, contentDispositionValue);
                }
                response.header(CONTENT_DISPOSITION, contentDispositionValue);
            } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    							check.OK(),
    							check.ResponseHeader("Access-Control-Allow-Origin", "cors.com")),
    					}
    				}(),
    			},
    			{
    				// GET without matching origin
    				name: "get no origin match",
    				opts: echo.CallOptions{
    					Port: echo.Port{
    						Name: "http",
    					},
    					Count: 1,
    					Check: check.And(
    						check.OK(),
    						check.ResponseHeader("Access-Control-Allow-Origin", "")),
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	req.Header.Add(httpstream.HeaderUpgrade, HeaderSpdy31)
    
    	conn, err := s.Dial(req)
    	if err != nil {
    		return nil, err
    	}
    
    	responseReader := bufio.NewReader(conn)
    
    	resp, err := http.ReadResponse(responseReader, nil)
    	if err != nil {
    		conn.Close()
    		return nil, err
    	}
    
    	s.conn = conn
    
    	return resp, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top