Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Shardz (0.13 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. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.11.md

     ([#64792](https://github.com/kubernetes/kubernetes/pull/64792), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'searchlog.agg.shard.size'. <br>
         * The value is, e.g. -1 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchlogAggShardSize();
    
        /**
         * Get the value for the key 'searchlog.agg.shard.size' as {@link Integer}. <br>
         * The value is, e.g. -1 <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top