Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for LimitResponseType (0.24 sec)

  1. pkg/apis/flowcontrol/types.go

    	// Required.
    	// +unionDiscriminator
    	Type LimitResponseType
    
    	// `queuing` holds the configuration parameters for queuing.
    	// This field may be non-empty only if `type` is `"Queue"`.
    	// +optional
    	Queuing *QueuingConfiguration
    }
    
    // LimitResponseType identifies how a Limited priority level handles a request that can not be executed right now
    type LimitResponseType string
    
    // Supported limit responses.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types.go

    type LimitResponseType string
    
    // Supported limit responses.
    const (
    	// LimitResponseTypeQueue means that requests that can not be executed right now are queued until they can be executed or a queuing limit is hit
    	LimitResponseTypeQueue LimitResponseType = "Queue"
    
    	// LimitResponseTypeReject means that requests that can not be executed right now are rejected
    	LimitResponseTypeReject LimitResponseType = "Reject"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    type LimitResponseType string
    
    // Supported limit responses.
    const (
    	// LimitResponseTypeQueue means that requests that can not be executed right now are queued until they can be executed or a queuing limit is hit
    	LimitResponseTypeQueue LimitResponseType = "Queue"
    
    	// LimitResponseTypeReject means that requests that can not be executed right now are rejected
    	LimitResponseTypeReject LimitResponseType = "Reject"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    type LimitResponseType string
    
    // Supported limit responses.
    const (
    	// LimitResponseTypeQueue means that requests that can not be executed right now are queued until they can be executed or a queuing limit is hit
    	LimitResponseTypeQueue LimitResponseType = "Queue"
    
    	// LimitResponseTypeReject means that requests that can not be executed right now are rejected
    	LimitResponseTypeReject LimitResponseType = "Reject"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    type LimitResponseType string
    
    // Supported limit responses.
    const (
    	// LimitResponseTypeQueue means that requests that can not be executed right now are queued until they can be executed or a queuing limit is hit
    	LimitResponseTypeQueue LimitResponseType = "Queue"
    
    	// LimitResponseTypeReject means that requests that can not be executed right now are rejected
    	LimitResponseTypeReject LimitResponseType = "Reject"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta3_LimitResponse_To_flowcontrol_LimitResponse(in *v1beta3.LimitResponse, out *flowcontrol.LimitResponse, s conversion.Scope) error {
    	out.Type = flowcontrol.LimitResponseType(in.Type)
    	out.Queuing = (*flowcontrol.QueuingConfiguration)(unsafe.Pointer(in.Queuing))
    	return nil
    }
    
    // Convert_v1beta3_LimitResponse_To_flowcontrol_LimitResponse is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_LimitResponse_To_flowcontrol_LimitResponse(in *v1.LimitResponse, out *flowcontrol.LimitResponse, s conversion.Scope) error {
    	out.Type = flowcontrol.LimitResponseType(in.Type)
    	out.Queuing = (*flowcontrol.QueuingConfiguration)(unsafe.Pointer(in.Queuing))
    	return nil
    }
    
    // Convert_v1_LimitResponse_To_flowcontrol_LimitResponse is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_LimitResponse_To_flowcontrol_LimitResponse(in *v1beta1.LimitResponse, out *flowcontrol.LimitResponse, s conversion.Scope) error {
    	out.Type = flowcontrol.LimitResponseType(in.Type)
    	out.Queuing = (*flowcontrol.QueuingConfiguration)(unsafe.Pointer(in.Queuing))
    	return nil
    }
    
    // Convert_v1beta1_LimitResponse_To_flowcontrol_LimitResponse is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta2_LimitResponse_To_flowcontrol_LimitResponse(in *v1beta2.LimitResponse, out *flowcontrol.LimitResponse, s conversion.Scope) error {
    	out.Type = flowcontrol.LimitResponseType(in.Type)
    	out.Queuing = (*flowcontrol.QueuingConfiguration)(unsafe.Pointer(in.Queuing))
    	return nil
    }
    
    // Convert_v1beta2_LimitResponse_To_flowcontrol_LimitResponse is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    							NonResourceURLs: []string{flowcontrol.NonResourceAll},
    						},
    					},
    				},
    			},
    		},
    	}
    
    	var (
    		responseType flowcontrol.LimitResponseType = flowcontrol.LimitResponseTypeReject
    		qcfg         *flowcontrol.QueuingConfiguration
    	)
    	if queueLength > 0 {
    		responseType = flowcontrol.LimitResponseTypeQueue
    		qcfg = &flowcontrol.QueuingConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top