Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for api_version (0.36 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type WatchdogInfo struct {
    	Options  uint32
    	Version  uint32
    	Identity [32]uint8
    }
    
    type PPSFData struct {
    	Info    PPSKInfo
    	Timeout PPSKTime
    }
    
    type PPSKParams struct {
    	Api_version   int32
    	Mode          int32
    	Assert_off_tu PPSKTime
    	Clear_off_tu  PPSKTime
    }
    
    type PPSKTime struct {
    	Sec   int64
    	Nsec  int32
    	Flags uint32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

      %0:2 = mhlo.custom_call @ApproxTopK(%arg0, %arg1, %arg2, %arg3) {
        api_version = 4 : i32,
        called_computations = [@top_k_gt_f32_comparator],
        backend_config = {
          aggregate_to_topk = true,
          is_fallback = true,
          recall_target = 8.500000e-01 : f32,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

    apiVersion: policy/v1
    kind: PodDisruptionBudget
    metadata:
      name: calico-kube-controllers
      namespace: kube-system
      labels:
        k8s-app: calico-kube-controllers
    spec:
      maxUnavailable: 1
      selector:
        matchLabels:
          k8s-app: calico-kube-controllers
    ---
    # Source: calico/templates/calico-kube-controllers.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    // +structType=atomic
    type ObjectFieldSelector struct {
    	// Version of the schema the FieldPath is written in terms of, defaults to "v1".
    	// +optional
    	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,1,opt,name=apiVersion"`
    	// Path of the field to select in the specified API version.
    	FieldPath string `json:"fieldPath" protobuf:"bytes,2,opt,name=fieldPath"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ObjectFieldSelector_To_core_ObjectFieldSelector(in *v1.ObjectFieldSelector, out *core.ObjectFieldSelector, s conversion.Scope) error {
    	out.APIVersion = in.APIVersion
    	out.FieldPath = in.FieldPath
    	return nil
    }
    
    // Convert_v1_ObjectFieldSelector_To_core_ObjectFieldSelector is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    type ObjectFieldSelector struct {
    	// Required: Version of the schema the FieldPath is written in terms of.
    	// If no value is specified, it will be defaulted to the APIVersion of the
    	// enclosing object.
    	APIVersion string
    	// Required: Path of the field to select in the specified API version
    	FieldPath string
    }
    
    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. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if len(fs.APIVersion) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("apiVersion"), ""))
    		return allErrs
    	}
    	if len(fs.FieldPath) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("fieldPath"), ""))
    		return allErrs
    	}
    
    	internalFieldPath, _, err := podshelper.ConvertDownwardAPIFieldLabel(fs.APIVersion, fs.FieldPath, "")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // This field is effectively required, but due to backwards compatibility is
      // allowed to be empty. Instances of this type with an empty value here are
      // almost certainly wrong.
      // TODO: Add other useful fields. apiVersion, kind, uid?
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
      // +optional
      // +default=""
      // +kubebuilder:default=""
    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. CHANGELOG/CHANGELOG-1.30.md

    - kubeadm: Added support for machine-readable output with `-o yaml` and `-o json` to the command `kubeadm certs check-expiration`. This change is introduced in a new API: ``` kind: CertificateExpirationInfo apiVersion: output.kubeadm.k8s.io/v1alpha3 ``` The existing non-structured formatting is preserved. The output API version v1alpha2 is now deprecated and will be removed in a future release. Please migrate to using v1alpha3.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top