Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,858 for centric (0.34 sec)

  1. docs/metrics/prometheus/README.md

    - MinIO exports Prometheus compatible data by default which is bucket centric as an authorized endpoint at `/minio/v2/metrics/bucket`.
    - MinIO exports Prometheus compatible data by default which is node centric as an authorized endpoint at `/minio/v2/metrics/node`.
    - MinIO exports Prometheus compatible data by default which is resource centric as an authorized endpoint at `/minio/v2/metrics/resource`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * IntelliJ IDEA centric tooling models.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 705 bytes
    - Viewed (0)
  3. releasenotes/notes/revision-cmd.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 23892
    releaseNotes:
      - |
        **Added** tooling for revision-centric view of current istio deployments in a cluster. This is to
        provide better understanding of deployments - like number of istiod, gateway pods, IstioOperator CRs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 15:53:01 UTC 2021
    - 408 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Eclipse-centric tooling models.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 702 bytes
    - Viewed (0)
  5. architecture/standards/0002-avoid-using-java-serialization.md

    - **Version Compatibility:**
    With Java serialization, even minor changes to a class (like adding a field) can break compatibility.
    
    - **Cross-Language Compatibility:**
    Java serialization is inherently Java-centric and does not support cross-language scenarios well.
    
    - **Type Safety:**
    Java serialization does not enforce type safety as strictly as some alternatives, potentially leading to runtime errors.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/interface.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Cache collects pods' information and provides node-level aggregated information.
    // It's intended for generic scheduler to do efficient lookup.
    // Cache's operations are pod centric. It does incremental updates based on pod events.
    // Pod events are sent via network. We don't have guaranteed delivery of all events:
    // We use Reflector to list and watch from remote.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Depending on the format of the metadata of a module, it is mapped differently to the variant-centric representation of the metadata:
    
    - If the module has Gradle Module Metadata, the data structure the rule operates on is very similar to what you find in the module's `.module` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    		if rparam.HasShape() {
    			t.SetHasShape(true)
    			break
    		}
    	}
    }
    
    // IsFullyInstantiated reports whether t is a fully instantiated generic type; i.e. an
    // instantiated generic type where all type arguments are non-generic or fully
    // instantiated generic types.
    func (t *Type) IsFullyInstantiated() bool {
    	return len(t.RParams()) > 0
    }
    
    // Map contains Type fields specific to maps.
    type Map struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/generic.go

    	// retried during the next relisting.
    	podsToReinspect map[types.UID]*kubecontainer.Pod
    	// Stop the Generic PLEG by closing the channel.
    	stopCh chan struct{}
    	// Locks the relisting of the Generic PLEG
    	relistLock sync.Mutex
    	// Indicates if the Generic PLEG is running or not
    	isRunning bool
    	// Locks the start/stop operation of Generic PLEG
    	runningMu sync.Mutex
    	// Indicates relisting related parameters
    	relistDuration *RelistDuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/generic.go

    	return f.informer
    }
    
    // Lister returns the GenericLister.
    func (f *genericInformer) Lister() cache.GenericLister {
    	return cache.NewGenericLister(f.Informer().GetIndexer(), f.resource)
    }
    
    // ForResource gives generic access to a shared informer of the matching type
    // TODO extend this to unknown resources with a client pool
    func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource) (GenericInformer, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top