Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for hard (0.08 sec)

  1. docs/en/docs/release-notes.md

    * 🌐 Add French translation for FastAPI People. PR [#2232](https://github.com/tiangolo/fastapi/pull/2232) by [@JulianMaurin](https://github.com/JulianMaurin).
    * 🌐 Add Korean translation for Tutorial - Path Parameters. PR [#2355](https://github.com/tiangolo/fastapi/pull/2355) by [@hard-coders](https://github.com/hard-coders).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
    type ResourceQuotaSpec struct {
    	// hard is the set of desired hard limits for each named resource.
    	// More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
    	// +optional
    	Hard ResourceList `json:"hard,omitempty" protobuf:"bytes,1,rep,name=hard,casttype=ResourceList,castkey=ResourceName"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	ResourceQuotaScopeCrossNamespacePodAffinity ResourceQuotaScope = "CrossNamespacePodAffinity"
    )
    
    // ResourceQuotaSpec defines the desired hard limits to enforce for Quota
    type ResourceQuotaSpec struct {
    	// Hard is the set of desired hard limits for each named resource
    	// +optional
    	Hard ResourceList
    	// A collection of filters that must match each object tracked by a quota.
    	// If not specified, the quota matches all objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_ResourceQuotaList
    }
    
    var map_ResourceQuotaSpec = map[string]string{
    	"":              "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.",
    	"hard":          "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
    message ResourceQuotaSpec {
      // hard is the set of desired hard limits for each named resource.
      // More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> hard = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    // validateResourceQuotaScopes ensures that each enumerated hard resource constraint is valid for set of scopes
    func validateResourceQuotaScopes(resourceQuotaSpec *core.ResourceQuotaSpec, fld *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(resourceQuotaSpec.Scopes) == 0 {
    		return allErrs
    	}
    	hardLimits := sets.New[core.ResourceName]()
    	for k := range resourceQuotaSpec.Hard {
    		hardLimits.Insert(k)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ResourceQuotaSpec_To_core_ResourceQuotaSpec(in *v1.ResourceQuotaSpec, out *core.ResourceQuotaSpec, s conversion.Scope) error {
    	out.Hard = *(*core.ResourceList)(unsafe.Pointer(&in.Hard))
    	out.Scopes = *(*[]core.ResourceQuotaScope)(unsafe.Pointer(&in.Scopes))
    	out.ScopeSelector = (*core.ScopeSelector)(unsafe.Pointer(in.ScopeSelector))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    :{"background-blend-mode":"darken"},".bg-blend-lighten":{"background-blend-mode":"lighten"},".bg-blend-color-dodge":{"background-blend-mode":"color-dodge"},".bg-blend-color-burn":{"background-blend-mode":"color-burn"},".bg-blend-hard-light":{"background-blend-mode":"hard-light"},".bg-blend-soft-light":{"background-blend-mode":"soft-light"},".bg-blend-difference":{"background-blend-mode":"difference"},".bg-blend-exclusion":{"background-blend-mode":"exclusion"},".bg-blend-hue":{"background-blend-m...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	unknownFields protoimpl.UnknownFields
    
    	// Controls whether to create resource quotas or not for the CNI DaemonSet.
    	Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
    	// The hard limit on the number of pods in the namespace where the CNI DaemonSet is deployed.
    	Pods int64 `protobuf:"varint,2,opt,name=pods,proto3" json:"pods,omitempty"`
    }
    
    func (x *ResourceQuotas) Reset() {
    	*x = ResourceQuotas{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-59482`](https://youtrack.jetbrains.com/issue/KT-59482) K2: build kmm-production-sample
    - [`KT-57529`](https://youtrack.jetbrains.com/issue/KT-57529) K1/K2: "IllegalStateException: not identifier: <no name provided>" with hard keywords in angle brackets
    - [`KT-62032`](https://youtrack.jetbrains.com/issue/KT-62032) K2: Render flexible types as A..B instead of cryptic ft<A, B> in diagnostic messages
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top