Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for ResponseHeader (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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