Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for granular (0.23 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // x-kubernetes-map-type annotates an object to further describe its topology.
      // This extension must only be used when type is object and may have 2 possible values:
      //
      // 1) `granular`:
      //      These maps are actual maps (key-value pairs) and each fields are independent
      //      from each other (they can each be manipulated by separate actors). This is
      //      the default behaviour for all maps.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    	stats.BuckHashSys = memstats.buckhash_sys.load()
    	// MemStats defines GCSys as an aggregate of all memory related
    	// to the memory management system, but we track this memory
    	// at a more granular level in the runtime.
    	stats.GCSys = memstats.gcMiscSys.load() + gcWorkBufInUse + gcProgPtrScalarBitsInUse
    	stats.OtherSys = memstats.other_sys.load()
    	stats.NextGC = heapGoal
    	stats.LastGC = memstats.last_gc_unix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/runtime/mpagealloc.go

    		// lo and hi describe all the parts of the level we need to look at.
    		lo, hi := addrsToSummaryRange(l, base, limit+1)
    
    		// Iterate over each block, updating the corresponding summary in the less-granular level.
    		for i := lo; i < hi; i++ {
    			children := p.summary[l+1][i<<logEntriesPerBlock : (i+1)<<logEntriesPerBlock]
    			sum := mergeSummaries(children, logMaxPages)
    			old := p.summary[l][i]
    			if old != sum {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // x-kubernetes-map-type annotates an object to further describe its topology.
      // This extension must only be used when type is object and may have 2 possible values:
      //
      // 1) `granular`:
      //      These maps are actual maps (key-value pairs) and each fields are independent
      //      from each other (they can each be manipulated by separate actors). This is
      //      the default behaviour for all maps.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Zinc is the Scala incremental compiler that allows Gradle to always compile the minimal set of files needed by the current file changes.
    It takes into account which methods are being used and which have changed, which means it's much more granular than just interfile dependencies.
    
    Zinc version has been updated to the newest available one in order to benefit from all the recent bugfixes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ----
    =====
    ====
    
    Note that contrary to the behavior of the deprecated `Dependency` filtering methods, `componentFilter` does not consider the transitive dependencies of the component being filtered.
    This allows for more granular control over which artifacts are selected.
    
    [[deprecated_namers]]
    ==== Deprecated `Namer` of `Task` and `Configuration`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

              "x-kubernetes-map-type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // resources associated with PVC.
      //
      // This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.
      // +featureGate=RecoverVolumeExpansionFailure
      // +mapType=granular
      // +optional
      map<string, string> allocatedResourceStatuses = 7;
    
      // currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
    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. staging/src/k8s.io/api/core/v1/types.go

    	// Expected to be non-nil when bound.
    	// claim.VolumeName is the authoritative bind between PV and PVC.
    	// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding
    	// +optional
    	// +structType=granular
    	ClaimRef *ObjectReference `json:"claimRef,omitempty" protobuf:"bytes,4,opt,name=claimRef"`
    	// persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top