Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,014 for reqTests (0.12 sec)

  1. src/net/http/request.go

    //
    // For outgoing client request, the context controls the entire
    // lifetime of a request and its response: obtaining a connection,
    // sending the request, and reading the response headers and body.
    //
    // To create a new request with a context, use [NewRequestWithContext].
    // To make a deep copy of a request with a new context, use [Request.Clone].
    func (r *Request) WithContext(ctx context.Context) *Request {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. docs/en/docs/reference/request.md

    # `Request` class
    
    You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 516 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1/types.go

    // ResourcePolicyRule is a predicate that matches some resource
    // requests, testing the request's verb and the target resource. A
    // ResourcePolicyRule matches a resource request if and only if: (a)
    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. docs/em/docs/how-to/custom-request-and-route.md

    ```
    
    !!! note "πŸ“‘ β„Ή"
         `Request` βœ”οΈ `request.scope` πŸ”’, πŸ‘ˆ 🐍 `dict` βš— πŸ—ƒ πŸ”— πŸ“¨.
    
         `Request` βœ”οΈ `request.receive`, πŸ‘ˆ πŸ”’ "πŸ“¨" πŸ’ͺ πŸ“¨.
    
         `scope` `dict` & `receive` πŸ”’ πŸ‘―β€β™‚οΈ πŸ• πŸ”« πŸ”§.
    
         & πŸ‘ˆ 2️⃣ πŸ‘œ, `scope` & `receive`, βš«οΈβ” πŸ’ͺ ✍ πŸ†• `Request` πŸ‘.
    
        πŸ’‘ πŸŒ… πŸ”ƒ `Request` βœ… <a href="https://www.starlette.io/requests/" class="external-link" target="_blank">πŸ’ƒ 🩺 πŸ”ƒ πŸ“¨</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

            List<CodeBlock> result = new ArrayList<>();
            result.add(CodeBlock.of("Intercepts the following declarations:<ul>"));
            requests.stream().map(request ->
                CodeBlock.of("<li> $L $L\n     with $L", callableKindForJavadoc(request), interceptedCallableLink(request), interceptorImplementationLink(request))
            ).collect(Collectors.toCollection(() -> result));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    	// will be different from the version sent. But it is fragile to rely on that.
    	if request.ErrorDetail != nil {
    		errCode := codes.Code(request.ErrorDetail.Code)
    		deltaLog.Warnf("ADS:%s: ACK ERROR %s %s:%s", stype, con.ID(), errCode.String(), request.ErrorDetail.GetMessage())
    		xds.IncrementXDSRejects(request.TypeUrl, con.proxy.ID, errCode.String())
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

            List<ReplacedAccessor> upgradedAccessors = requests.stream()
                .map(request -> {
                    PropertyUpgradeRequestExtra requestExtra = request.getRequestExtras().getByType(PropertyUpgradeRequestExtra.class).get();
                    CallableInfo intercepted = request.getInterceptedCallable();
                    Type returnType = intercepted.getReturnType().getType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/nfacct_linux_test.go

    			// validate number of requests
    			assert.Equal(t, tc.netlinkCalls, len(tc.handler.requests))
    			if tc.netlinkCalls > 0 {
    				// validate request
    				assert.Equal(t, cmdGet, tc.handler.requests[0].cmd)
    				assert.Equal(t, uint16(unix.NLM_F_REQUEST|unix.NLM_F_ACK), tc.handler.requests[0].flags)
    
    				// validate attribute(NFACCT_NAME)
    				assert.Equal(t, 1, len(tc.handler.requests[0].data))
    				assert.Equal(t,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. docs/tr/docs/tutorial/request-forms.md

    Hasan Sezer Taşan <******@****.***> 1715195446 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed May 08 19:10:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/types.go

    }
    
    // CertificateSigningRequestSpec contains the certificate request.
    type CertificateSigningRequestSpec struct {
    	// request contains an x509 certificate signing request encoded in a "CERTIFICATE REQUEST" PEM block.
    	// When serialized as JSON or YAML, the data is additionally base64-encoded.
    	// +listType=atomic
    	Request []byte `json:"request" protobuf:"bytes,1,opt,name=request"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top