Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 96 for reasons (0.3 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                  }
                ],
                "description": "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
                "x-kubernetes-list-type": "atomic"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

              "message": {
                "description": "message contains a human readable message with details about the request state",
                "type": "string"
              },
              "reason": {
                "description": "reason indicates a brief reason for the request state",
                "type": "string"
              },
              "status": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                  }
                ],
                "description": "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
                "x-kubernetes-list-type": "atomic"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                  }
                ],
                "description": "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
                "x-kubernetes-list-type": "atomic"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                  }
                ],
                "description": "Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.",
                "x-kubernetes-list-type": "atomic"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // The wait reason must be a valid isWaitingForGC wait reason.
    //
    // Use this over casgstatus when possible to ensure that a waitreason is set.
    func casGToWaitingForGC(gp *g, old uint32, reason waitReason) {
    	if !reason.isWaitingForGC() {
    		throw("casGToWaitingForGC with non-isWaitingForGC wait reason")
    	}
    	casGToWaiting(gp, old, reason)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    		w.Header().Set("Content-Type", string(contentType))
    
    		enc := expfmt.NewEncoder(w, contentType)
    		for _, mf := range mfs {
    			if err := enc.Encode(mf); err != nil {
    				// client may disconnect for any reasons
    				// we do not have to log this.
    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    func metricsBucketHandler() http.Handler {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    			if allocatedSize != nil {
    				newSize = *allocatedSize
    			}
    		default:
    			newSize = pvcSpecSize
    		}
    	} else {
    		// PV has already been expanded and hence we can be here for following reasons:
    		//   1. If expansion is pending on the node and this was just a spurious update event
    		//      we don't need to do anything and let kubelet handle it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // generated by the class object during its lifetime.
    //
    // In theory, this class is not necessary because we should simply take
    // the TF function name and use it as MLIR function name. However, for some
    // unknown reasons (callout for investigation in b/142268695), keeping the
    // function names unchanged in an MLIR roundtrip causes test failures.
    // TODO(b/142268695) Re-evaluate whether we need this class v.s. directly using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	var c int32
    	errors := ctxt.Errors
    	var nops []nopPad // Padding for a particular assembly (reuse slice storage if multiple assemblies)
    	nrelocs0 := len(s.R)
    	for {
    		// This loop continues while there are reasons to re-assemble
    		// whole block, like the presence of long forward jumps.
    		reAssemble := false
    		for i := range s.R[nrelocs0:] {
    			s.R[nrelocs0+i] = obj.Reloc{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top