Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,647 for conditional (0.13 sec)

  1. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"type":               "Type of deployment condition.",
    	"status":             "Status of the condition, one of True, False, Unknown.",
    	"lastUpdateTime":     "The last time this condition was updated.",
    	"lastTransitionTime": "Last time the condition transitioned from one status to another.",
    	"reason":             "The reason for the condition's last transition.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    message FlowSchemaCondition {
      // `type` is the type of the condition.
      // Required.
      optional string type = 1;
    
      // `status` is the status of the condition.
      // Can be True, False, Unknown.
      // Required.
      optional string status = 2;
    
      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

          - name: atomic
          - name: call-to-gc
          - name: duplicated-imports
          - name: string-of-int
          - name: defer
            arguments:
              - - "call-chain"
          - name: unconditional-recursion
          - name: identical-branches
            # the following rules can be enabled in the future
            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    	"":                   "FlowSchemaCondition describes conditions for a FlowSchema.",
    	"type":               "`type` is the type of the condition. Required.",
    	"status":             "`status` is the status of the condition. Can be True, False, Unknown. Required.",
    	"lastTransitionTime": "`lastTransitionTime` is the last time the condition transitioned from one status to another.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    message StatefulSetCondition {
      // Type of statefulset condition.
      optional string type = 1;
    
      // Status of the condition, one of True, False, Unknown.
      optional string status = 2;
    
      // Last time the condition transitioned from one status to another.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/builder.go

    	// The evaluation result is stored in the dynamic metadata keyed by the policy name. And then the ext_authz filter
    	// can utilize these metadata to trigger the enforcement conditionally.
    	// See https://docs.google.com/document/d/1V4mCQCw7mlGp0zSQQXYoBdbKMDnkPOjeyUb85U07iSI/edit#bookmark=kix.jdq8u0an2r6s
    	// for more details.
    	rbac := &rbachttp.RBAC{
    		ShadowRules:           rules,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy.go

    func (p *ReverseProxy) getErrorHandler() func(http.ResponseWriter, *http.Request, error) {
    	if p.ErrorHandler != nil {
    		return p.ErrorHandler
    	}
    	return p.defaultErrorHandler
    }
    
    // modifyResponse conditionally runs the optional ModifyResponse hook
    // and reports whether the request should proceed.
    func (p *ReverseProxy) modifyResponse(rw http.ResponseWriter, res *http.Response, req *http.Request) bool {
    	if p.ModifyResponse == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    This can easily be handled by conditionally applying a version-compliant script.
    
    NOTE: The version-compliant script should reside somewhere other than the `init.d` directory (such as a sub-directory), so it is not automatically applied.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			return "0"
    		}
    		return arg.String()
    	case CondReg:
    		// The CondReg can either be found in a CMP, where the
    		// condition register field is being set, or in an instruction
    		// like a branch or isel that is testing a bit in a condition
    		// register field.
    		if arg == CR0 && strings.HasPrefix(inst.Op.String(), "cmp") {
    			return "" // don't show cr0 for cmp instructions
    		} else if arg >= CR0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    type FlowSchemaStatus struct {
    	// `conditions` is a list of the current states of FlowSchema.
    	// +listType=map
    	// +listMapKey=type
    	// +optional
    	Conditions []FlowSchemaCondition `json:"conditions,omitempty" protobuf:"bytes,1,rep,name=conditions"`
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    type FlowSchemaCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top