Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,369 for RequestId (0.12 sec)

  1. internal/logger/reqinfo.go

    	sync.RWMutex
    }
    
    // NewReqInfo :
    func NewReqInfo(remoteHost, userAgent, deploymentID, requestID, api, bucket, object string) *ReqInfo {
    	return &ReqInfo{
    		RemoteHost:   remoteHost,
    		UserAgent:    userAgent,
    		API:          api,
    		DeploymentID: deploymentID,
    		RequestID:    requestID,
    		BucketName:   bucket,
    		ObjectName:   object,
    	}
    }
    
    // AppendTags - appends key/val to ReqInfo.tags
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/net/http/fcgi/fcgi_test.go

    			[]byte(nameData),
    			[]byte(valueData),
    		},
    		nil,
    	)
    }
    
    func makeRecord(
    	recordType recType,
    	requestId uint16,
    	contentData []byte,
    ) []byte {
    	requestIdB1 := byte(requestId >> 8)
    	requestIdB0 := byte(requestId)
    
    	contentLength := len(contentData)
    	contentLengthB1 := byte(contentLength >> 8)
    	contentLengthB0 := byte(contentLength)
    	return bytes.Join([][]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. cmd/sts-errors.go

    	Error   struct {
    		Type    string `xml:"Type"`
    		Code    string `xml:"Code"`
    		Message string `xml:"Message"`
    	} `xml:"Error"`
    	RequestID string `xml:"RequestId"`
    }
    
    // STSErrorCode type of error status.
    type STSErrorCode int
    
    //go:generate stringer -type=STSErrorCode -trimprefix=Err $GOFILE
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SendPartialResponseThenBlock.java

            this.timeout = timeout;
            condition = lock.newCondition();
            this.precondition = precondition;
            this.content = content;
        }
    
        @Override
        public void writeTo(int requestId, HttpExchange exchange) throws IOException {
            exchange.sendResponseHeaders(200, content.length);
            exchange.getResponseBody().write(content, 0, 1024);
            exchange.getResponseBody().flush();
            lock.lock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/util.go

    const (
    	hostHeader = "Host"
    )
    
    var fwLog = log.RegisterScope("forwarder", "echo clientside")
    
    func writeForwardedHeaders(out *bytes.Buffer, requestID int, header http.Header) {
    	for key, values := range header {
    		for _, v := range values {
    			echo.ForwarderHeaderField.WriteKeyValueForRequest(out, requestID, key, v)
    		}
    	}
    }
    
    func newDialer(cfg *Config) hbone.Dialer {
    	if cfg.Request.Hbone.GetAddress() != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMethodAndRunAction.java

            return path;
        }
    
        @Override
        public ResourceHandler create(WaitPrecondition precondition) {
            return this;
        }
    
        @Override
        public void writeTo(int requestId, HttpExchange exchange) {
            action.execute(exchange);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AbstractFailure.java

        public boolean isFailure() {
            return true;
        }
    
        @Override
        public RuntimeException getFailure() {
            return failure;
        }
    
        @Override
        public void writeTo(int requestId, HttpExchange exchange) {
            throw new IllegalStateException();
        }
    
        protected static String withLeadingSlash(String path) {
            if (path.startsWith("/")) {
                return path;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. docs/sts/assume-role.md

        </Credentials>
      </AssumeRoleResult>
      <ResponseMetadata>
        <RequestId>c6104cbe-af31-11e0-8154-cbc7ccf896c7</RequestId>
      </ResponseMetadata>
    </AssumeRoleResponse>
    ```
    
    ## Using AssumeRole API
    
    ```
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio123
    minio server ~/test
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                Error() {
                    Code("InvalidAccessKeyId")
                    Message("The AWS Access Key Id you provided does not exist in our records.")
                    AWSAccessKeyId("notRelevant")
                    RequestId("stubbedAuthFailureRequestId")
                    HostId("stubbedAuthFailureHostId")
                }
            }
    
            HttpStub httpStub = HttpStub.stubInteraction {
                request {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/headers_test.go

    				Subsets: []echo.SubsetConfig{
    					{
    						Annotations: map[string]string{annotation.ProxyConfig.Name: `
    tracing: {}
    proxyHeaders:
      forwardedClientCert: SANITIZE
      server:
        disabled: true
      requestId:
        disabled: true
      attemptCount:
        disabled: true
      envoyDebugHeaders:
        disabled: true
      metadataExchangeHeaders:
        mode: IN_MESH`},
    					},
    				},
    			}
    			instances := deployment.New(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top