Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,212 for RequestId (0.19 sec)

  1. internal/logger/target/console/console.go

    	var deploymentID string
    	if entry.DeploymentID != "" {
    		deploymentID = "\nDeploymentID: " + entry.DeploymentID
    	}
    
    	var requestID string
    	if entry.RequestID != "" {
    		requestID = "\nRequestID: " + entry.RequestID
    	}
    
    	var remoteHost string
    	if entry.RemoteHost != "" {
    		remoteHost = "\nRemoteHost: " + entry.RemoteHost
    	}
    
    	var host string
    	if entry.Host != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMethod.java

        private final Lock lock;
    
        private ResponseProducer producer = new ResponseProducer() {
            @Override
            public void writeTo(int requestId, HttpExchange exchange) throws IOException {
                responseBody.writeTo(requestId, exchange);
            }
        };
        private ResponseProducer responseBody = new SendFixedContent(200, "hi");
        private BlockingRequest blockingRequest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. pkg/test/echo/server/forwarder/http.go

    	echo.LatencyField.WriteForRequest(&outBuffer, requestID, fmt.Sprintf("%v", time.Since(start)))
    	echo.ActiveRequestsField.WriteForRequest(&outBuffer, requestID, fmt.Sprintf("%d", c.e.ActiveRequests()))
    
    	// Process the response.
    	err = processHTTPResponse(requestID, httpResp, &outBuffer)
    
    	// Extract the output string.
    	return outBuffer.String(), err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ResourceHandlerWrapper.java

                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void writeTo(int requestId, HttpExchange exchange) throws IOException {
            handler.writeTo(requestId, exchange);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh_test.go

    			base: `
    proxyHeaders:
      requestId:
        disabled: true`,
    			overlay: `
    proxyHeaders:
      requestId:
        disabled: false`,
    			result: `
    proxyHeaders:
      requestId:
        disabled: false`,
    		},
    		{
    			name: "enabled then disabled",
    			base: `
    proxyHeaders:
      requestId:
        disabled: false`,
    			overlay: `
    proxyHeaders:
      requestId:
        disabled: true`,
    			result: `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/tcp.go

    			return msgBuilder.String(), err
    		}
    	}
    
    	echo.ForwarderURLField.WriteForRequest(&msgBuilder, requestID, cfg.Request.Url)
    
    	if cfg.Request.Message != "" {
    		echo.ForwarderMessageField.WriteForRequest(&msgBuilder, requestID, cfg.Request.Message)
    	}
    
    	// Apply per-request timeout to calculate deadline for reads/writes.
    	ctx, cancel := context.WithTimeout(ctx, cfg.timeout)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ResponseProducer.java

    interface ResponseProducer {
        default boolean isFailure() {
            return false;
        }
    
        /**
         * Called to handle a request. Is *not* called under lock.
         */
        void writeTo(int requestId, HttpExchange exchange) throws IOException;
    
        /**
         * Returns the failure, if any.
         */
        default RuntimeException getFailure() {
            throw new IllegalStateException();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top