Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for headerIDs (0.28 sec)

  1. cmd/api-headers.go

    	w.Header().Set(xhttp.CacheControl, "no-cache") // nginx to turn off buffering
    	w.Header().Set("X-Accel-Buffering", "no")      // nginx to turn off buffering
    }
    
    // Write http common headers
    func setCommonHeaders(w http.ResponseWriter) {
    	// Set the "Server" http header.
    	w.Header().Set(xhttp.ServerInfo, MinioStoreName)
    
    	// Set `x-amz-bucket-region` only if region is set on the server
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 04:44:00 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

    
    def getForwardHeaders(request):
        headers = {}
    
        # x-b3-*** headers can be populated using the OpenTelemetry span
        ctx = propagator.extract(carrier={k.lower(): v for k, v in request.headers})
        propagator.inject(headers, ctx)
    
        # We handle other (non x-b3-***) headers manually
        if 'user' in session:
            headers['end-user'] = session['user']
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  3. samples/bookinfo/src/details/details.rb

          'grpc-trace-bin',
    
          # b3 trace headers. Compatible with Zipkin, OpenCensusAgent, and
          # Stackdriver Istio configurations.
          'x-b3-traceid',
          'x-b3-spanid',
          'x-b3-parentspanid',
          'x-b3-sampled',
          'x-b3-flags',
    
          # SkyWalking trace headers.
          'sw8',
    
          # Application-specific headers to forward.
          'end-user',
          'user-agent',
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/encoding/pem/pem.go

    //
    // The encoded form is:
    //
    //	-----BEGIN Type-----
    //	Headers
    //	base64-encoded Bytes
    //	-----END Type-----
    //
    // where [Block.Headers] is a possibly empty sequence of Key: Value lines.
    type Block struct {
    	Type    string            // The type, taken from the preamble (i.e. "RSA PRIVATE KEY").
    	Headers map[string]string // Optional headers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/ingress_test.go

    				{
    					// Basic HTTP call
    					name: "http",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/test",
    							Headers: headers.New().WithHost("server").Build(),
    						},
    						Check: successChecker,
    						Count: count,
    					},
    					path:       "/test",
    					prefixPath: "/prefix",
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. cmd/signature-v4.go

    )
    
    // getCanonicalHeaders generate a list of request headers with their values
    func getCanonicalHeaders(signedHeaders http.Header) string {
    	var headers []string
    	vals := make(http.Header)
    	for k, vv := range signedHeaders {
    		k = strings.ToLower(k)
    		headers = append(headers, k)
    		vals[k] = vv
    	}
    	sort.Strings(headers)
    
    	var buf bytes.Buffer
    	for _, k := range headers {
    		buf.WriteString(k)
    		buf.WriteByte(':')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. tests/integration/pilot/headers_test.go

    	framework.NewTest(t).
    		RequireIstioVersion("1.19").
    		Run(func(t framework.TestContext) {
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "proxy-headers", Inject: true})
    			cfg := echo.Config{
    				Namespace: ns,
    				Ports:     ports.All(),
    				Service:   "no-headers",
    				Subsets: []echo.SubsetConfig{
    					{
    						Annotations: map[string]string{annotation.ProxyConfig.Name: `
    tracing: {}
    proxyHeaders:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pkg/config/validation/virtualservice.go

    	}
    	for _, name := range http.Headers.GetRequest().GetRemove() {
    		errs = AppendValidation(errs, ValidateHTTPHeaderOperationName(name))
    	}
    	for name, val := range http.Headers.GetResponse().GetAdd() {
    		errs = AppendValidation(errs, ValidateHTTPHeaderOperationName(name))
    		errs = AppendValidation(errs, ValidateHTTPHeaderValue(val))
    	}
    	for name, val := range http.Headers.GetResponse().GetSet() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. cmd/object-handlers-common.go

    	if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) {
    		return false
    	}
    
    	// Headers to be set of object content is not going to be written to the client.
    	writeHeaders := func() {
    		// set common headers
    		setCommonHeaders(w)
    
    		// set object-related metadata headers
    		w.Header().Set(xhttp.LastModified, objInfo.ModTime.UTC().Format(http.TimeFormat))
    
    		if objInfo.ETag != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. cmd/handler-utils.go

    	"X-Minio-Replication-Encrypted-Multipart",
    	"X-Minio-Replication-Actual-Object-Size",
    	ReplicationSsecChecksumHeader,
    	// Add more supported headers here.
    }
    
    // mapping of internal headers to allowed replication headers
    var validSSEReplicationHeaders = map[string]string{
    	"X-Minio-Internal-Server-Side-Encryption-Sealed-Key":     "X-Minio-Replication-Server-Side-Encryption-Sealed-Key",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top