Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for abortCh (0.23 sec)

  1. src/net/http/h2_bundle.go

    	// or until the request is aborted (via context, error, or otherwise),
    	// whichever comes first.
    	for {
    		select {
    		case <-cs.peerClosed:
    			return nil
    		case <-respHeaderTimer:
    			return http2errTimeout
    		case <-respHeaderRecv:
    			respHeaderRecv = nil
    			respHeaderTimer = nil // keep waiting for END_STREAM
    		case <-cs.abort:
    			return cs.abortErr
    		case <-ctx.Done():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.20.md

    - If the user specifies an invalid timeout in the request URL, the request will be aborted with an HTTP 400.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

      restrictions that already apply to CustomResourceDefinition.
      If rule evaluation uses more compute than the limit, the API server aborts the evaluation and the
      admission check that was being performed is aborted; the `failurePolicy` for the ValidatingAdmissionPolicy
      determines the outcome. ([#115747](https://github.com/kubernetes/kubernetes/pull/115747), [@cici37](https://github.com/cici37))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.8.md

    * The following deprecated flags were removed from `kubelet`:
    
      * `api-servers` - add apiserver addresses to the kubeconfig file instead.
    
      Don't use these flags. Using deprecated flags causes the kubelet to print a warning. Using a removed flag causes the kubelet to abort the startup.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          IntegerAttr::get(rewriter->getIntegerType(64), 0));
      return unpacked_indices;
    }
    
    // Returns size of dimension at the specified index, if ranked tensor.
    // Otherwise, returns -1.
    //
    // Aborts if the type is ranked but doesn't have the dimension.
    int64_t GetDimSize(Type ty, int64_t index) {
      RankedTensorType ranked_ty = mlir::dyn_cast<RankedTensorType>(ty);
      if (!ranked_ty) return -1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

    // events. For the PostStart and PreStop lifecycle handlers, management of the container blocks
    // until the action is complete, unless the container process fails, in which case the handler is aborted.
    message Lifecycle {
      // PostStart is called immediately after a container is created. If the handler fails,
      // the container is terminated and restarted according to its restart policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    // events.  For the PostStart and PreStop lifecycle handlers, management of the container blocks
    // until the action is complete, unless the container process fails, in which case the handler is aborted.
    type Lifecycle struct {
    	// PostStart is called immediately after a container is created.  If the handler fails, the container
    	// is terminated and restarted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"postStart": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

    // events. For the PostStart and PreStop lifecycle handlers, management of the container blocks
    // until the action is complete, unless the container process fails, in which case the handler is aborted.
    message Lifecycle {
      // PostStart is called immediately after a container is created. If the handler fails,
      // the container is terminated and restarted according to its restart policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	{COPY, 0xfc2007fe00000000, 0x7c20060c00000000, 0x3c0000100000000, // Copy X-form (copy RA,RB)
    		[6]*argField{ap_Reg_11_15, ap_Reg_16_20}},
    	{CPABORT, 0xfc0007fe00000000, 0x7c00068c00000000, 0x3fff80100000000, // Copy-Paste Abort X-form (cpabort)
    		[6]*argField{}},
    	{DARN, 0xfc0007fe00000000, 0x7c0005e600000000, 0x1cf80100000000, // Deliver A Random Number X-form (darn RT,L)
    		[6]*argField{ap_Reg_6_10, ap_ImmUnsigned_14_15}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top