Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,958 for ktypes (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	UserAgent string
    	// Object reference this request is targeted at.
    	// Does not apply for List-type requests, or non-resource requests.
    	// +optional
    	ObjectRef *ObjectReference
    	// The response status, populated even when the ResponseObject is not a Status type.
    	// For successful responses, this will only include the Code. For non-status type
    	// error responses, this will be auto-populated with the error Message.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue7316.go

    // Issue 7316
    // This test exercises all types of numeric conversions, which was one
    // of the sources of etype mismatch during register allocation in 8g.
    
    package main
    
    import "fmt"
    
    const tpl = `
    func init() {
    	var i %s
    	j := %s(i)
    	_ = %s(j)
    }
    `
    
    func main() {
    	fmt.Println("package main")
    	ntypes := []string{
    		"byte", "rune", "uintptr",
    		"float32", "float64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 777 bytes
    - Viewed (0)
  3. pkg/apis/authorization/types.go

    	Group string
    	// Version is the API Version of the Resource.  "*" means all.
    	Version string
    	// Resource is one of the existing resource types.  "*" means all.
    	Resource string
    	// Subresource is one of the existing resource types.  "" means none.
    	Subresource string
    	// Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.
    	Name string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/tests/generate_testdata.py

      @def_function.function(input_signature=[
          tensor_spec.TensorSpec(shape=(), dtype=dtypes.float32),
      ])
      def test_float(self, x):
        return constant_op.constant(3.0) * x
    
      @def_function.function(input_signature=[
          tensor_spec.TensorSpec(shape=(), dtype=dtypes.int32),
      ])
      def test_int(self, x):
        return constant_op.constant(3) * x
    
      @def_function.function(input_signature=[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    // ListOptions is the query options to a standard REST list call.
    type ListOptions struct {
    	metav1.TypeMeta
    
    	// A selector based on labels
    	LabelSelector labels.Selector
    	// A selector based on fields
    	FieldSelector fields.Selector
    	// If true, watch for changes to this list
    	Watch bool
    	// allowWatchBookmarks requests watch events with type "BOOKMARK".
    	// Servers that do not implement bookmarks may ignore this flag and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    type ValidatingAdmissionPolicyConditionType string
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    )
    
    type AuthorizerType string
    
    type AuthorizerConfiguration struct {
    	// Type refers to the type of the authorizer
    	// "Webhook" is supported in the generic API server
    	// Other API servers may support additional authorizer
    	// types like Node, RBAC, ABAC, etc.
    	Type string `json:"type"`
    
    	// Name used to describe the webhook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/api/types.go

    // (for a given signal, the decision to evict will be made when crossing the threshold
    // from either above or below, never both). There is thus no reason to expose the
    // operator in the Kubelet's public API. Instead, we internally map signal types to operators.
    var OpForSignal = map[Signal]ThresholdOperator{
    	SignalMemoryAvailable:            OpLessThan,
    	SignalNodeFsAvailable:            OpLessThan,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. pkg/apis/networking/types.go

    type NetworkPolicy struct {
    	metav1.TypeMeta
    
    	// +optional
    	metav1.ObjectMeta
    
    	// spec represents the specification of the desired behavior for this NetworkPolicy.
    	// +optional
    	Spec NetworkPolicySpec
    }
    
    // PolicyType describes the NetworkPolicy type
    // This type is beta-level in 1.8
    type PolicyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    type ValidatingAdmissionPolicyConditionType string
    
    // TypeChecking contains results of type checking the expressions in the
    // ValidatingAdmissionPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top