Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for kimd (0.58 sec)

  1. src/runtime/metrics.go

    				out.kind = metricKindUint64
    				out.scalar = in.heapStats.numObjects
    			},
    		},
    		"/gc/heap/tiny/allocs:objects": {
    			deps: makeStatDepSet(heapStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = in.heapStats.tinyAllocCount
    			},
    		},
    		"/gc/limiter/last-enabled:gc-cycle": {
    			compute: func(_ *statAggregate, out *metricValue) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

        operator.istio.io/component: "Cni"
    subjects:
    - kind: ServiceAccount
      name: {{ template "name" . }}
      namespace: {{ .Release.Namespace}}
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: {{ template "name" . }}-repair-role
    {{- end }}
    ---
    {{- if .Values.cni.ambient.enabled }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: {{ template "name" . }}-ambient
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        name: slctr-combined-no
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: bind-all
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/common_test.go

    	}{
    		{
    			name: " Wrong Group value",
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "foo.k8s.io", Version: "v1", Kind: "Foo"}: []byte(`kind: Foo`),
    			},
    			expected: false,
    		},
    		{
    			name: "Empty Group value",
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "", Version: "v1", Kind: "Empty"}: []byte(`kind: Empty`),
    			},
    			expected: false,
    		},
    		{
    			name:     "Nil value",
    			gvkmap:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/load/load_test.go

    			name:      "missing kind",
    			data:      []byte(`{"apiVersion":"apiserver.config.k8s.io/v1alpha1"}`),
    			expectErr: `'Kind' is missing`,
    		},
    		{
    			name:      "unknown group",
    			data:      []byte(`{"apiVersion":"apps/v1alpha1","kind":"AuthorizationConfiguration"}`),
    			expectErr: `apps/v1alpha1`,
    		},
    		{
    			name:      "unknown version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 07:00:31 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pkg/config/schema/ast/ast.go

    	Description        string   `json:"description"`
    }
    
    // FindResourceForGroupKind looks up a resource with the given group and kind. Returns nil if not found.
    func (m *Metadata) FindResourceForGroupKind(group, kind string) *Resource {
    	for _, r := range m.Resources {
    		if r.Group == group && r.Kind == kind {
    			return r
    		}
    	}
    	return nil
    }
    
    // UnmarshalJSON implements json.Unmarshaler
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/validation_test.go

    			required("apiVersion"),
    			required("kind"),
    		}},
    		{name: "version and kind", object: map[string]interface{}{
    			"apiVersion": "foo/v1",
    			"kind":       "Foo",
    		}},
    		{name: "invalid kind", object: map[string]interface{}{
    			"apiVersion": "foo/v1",
    			"kind":       "foo.bar-com",
    		}, errors: []validationMatch{
    			invalid("kind"),
    		}},
    		{name: "no name", object: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/internal/trace/value.go

    // to that possibility.
    func (v Value) Kind() ValueKind {
    	return v.kind
    }
    
    // Uint64 returns the uint64 value for a MetricSampleUint64.
    //
    // Panics if this metric sample's Kind is not MetricSampleUint64.
    func (v Value) Uint64() uint64 {
    	if v.kind != ValueUint64 {
    		panic("Uint64 called on Value of a different Kind")
    	}
    	return v.scalar
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ecds_test.go

    		{
    			name:           "has_relevant_config_update",
    			proxyNamespace: "default",
    			request: &model.PushRequest{
    				Full:           true,
    				ConfigsUpdated: sets.New(model.ConfigKey{Kind: kind.AuthorizationPolicy}, model.ConfigKey{Kind: kind.WasmPlugin}),
    			},
    			watchedResources: []string{"extenstions.istio.io/wasmplugin/default.default-plugin-with-sec"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        name: abc-foo-example-com
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: attaches-to-abc-foo-example-com-with-hostname-intersection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top