Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for kindOf (0.18 sec)

  1. manifests/charts/gateway/README.md

    ```console
    KINDS=(service deployment)
    RELEASE=istio-ingressgateway
    NAMESPACE=istio-system
    for KIND in "${KINDS[@]}"; do
        kubectl --namespace $NAMESPACE --overwrite=true annotate $KIND $RELEASE meta.helm.sh/release-name=$RELEASE
        kubectl --namespace $NAMESPACE --overwrite=true annotate $KIND $RELEASE meta.helm.sh/release-namespace=$NAMESPACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

                return PsiEquivalenceUtil.areElementsEquivalent(psiClass, otherPsiClass)
            }
            return symbolEquals(other)
        }
    
        /**
         * All kinds of non-local named class or object symbols must have the same kind of hash code. The class ID is the best option, as the
         * same class/object may be represented by multiple different symbols.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

    kind: RoleBinding
    metadata:
      labels:
        app: metallb
      name: pod-lister
      namespace: metallb-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: pod-lister
    subjects:
    - kind: ServiceAccount
      name: speaker
      namespace: metallb-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      labels:
        app: metallb
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/log/slog/value.go

    	"Uint64",
    	"Group",
    	"LogValuer",
    }
    
    func (k Kind) String() string {
    	if k >= 0 && int(k) < len(kindStrings) {
    		return kindStrings[k]
    	}
    	return "<unknown slog.Kind>"
    }
    
    // Unexported version of Kind, just so we can store Kinds in Values.
    // (No user-provided value has this type.)
    type kind Kind
    
    // Kind returns v's Kind.
    func (v Value) Kind() Kind {
    	switch x := v.any.(type) {
    	case Kind:
    		return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/gateway-api-crd.yaml

                            Support: Core
                          properties:
                            kinds:
                              description: |-
                                Kinds specifies the groups and kinds of Routes that are allowed to bind
                                to this Gateway Listener. When unspecified or empty, the kinds of Routes
                                selected are determined using the Listener protocol.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                          properties:
                            kinds:
                              description: "Kinds specifies the groups and kinds of Routes
                                that are allowed to bind to this Gateway Listener. When
                                unspecified or empty, the kinds of Routes selected are
                                determined using the Listener protocol. \n A RouteGroupKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export_flags.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_FLATBUFFER_EXPORT_FLAGS_H_
    
    #include <string>
    
    // These flags are used to control the emission or not of different kinds of ops
    // during the flatbuffer translation.
    extern bool emit_builtin_tflite_ops;
    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    // The flag to control whether to lower tensorlist ops into TF ops.
    extern bool lower_tensor_list_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 20 17:49:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzer.go

    		name:      name,
    		analyzers: analyzers,
    	}
    }
    
    func (c *InternalCombinedAnalyzer) RelevantSubset(kinds sets.Set[config.GroupVersionKind]) CombinedAnalyzer {
    	var selected []Analyzer
    	for _, a := range c.analyzers {
    		for _, inputKind := range a.Metadata().Inputs {
    			if kinds.Contains(inputKind) {
    				selected = append(selected, a)
    				break
    			}
    		}
    	}
    	return Combine("subset", selected...)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/abi/type.go

    	GCData    *byte
    	Str       NameOff // string form
    	PtrToThis TypeOff // type for pointer to this type, may be zero
    }
    
    // A Kind represents the specific kind of type that a Type represents.
    // The zero Kind is not a valid kind.
    type Kind uint8
    
    const (
    	Invalid Kind = iota
    	Bool
    	Int
    	Int8
    	Int16
    	Int32
    	Int64
    	Uint
    	Uint8
    	Uint16
    	Uint32
    	Uint64
    	Uintptr
    	Float32
    	Float64
    	Complex64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io_openapi.json

                "type": "string"
              },
              "kind": {
                "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
                "type": "string"
              },
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top