Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,273 for kindOf (0.19 sec)

  1. src/runtime/type.go

    	// the two types are identical, but recursively defined and loaded from
    	// different modules
    	seen[tp] = struct{}{}
    
    	if t == v {
    		return true
    	}
    	kind := t.Kind_ & abi.KindMask
    	if kind != v.Kind_&abi.KindMask {
    		return false
    	}
    	rt, rv := toRType(t), toRType(v)
    	if rt.string() != rv.string() {
    		return false
    	}
    	ut := t.Uncommon()
    	uv := v.Uncommon()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

            // Compiler only handles 'error' and 'warn' kinds
            if (!("error".equals(kind) || "warn".equals(kind))) {
                throw new IllegalArgumentException("kind must be either 'error' or 'warn'");
            }
            // If there are no diagnostics of this kind, we don't need to print anything
            if (number == 0) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// target is known. In general, if the return target is not in the input list, the caller is expected to invoke
    	// Scheme.New(target) and then perform a conversion between the current Go type and the destination Go type.
    	// Sophisticated implementations may use additional information about the input kinds to pick a destination kind.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. pkg/api/testing/serialization_test.go

    				t.Errorf("expected %v: %v %v", gvk, got, err)
    			}
    			data, err := runtime.Encode(legacyscheme.Codecs.LegacyCodec(gv), obj)
    			if err != nil {
    				t.Errorf("expected %v: %v\n%s", gvk, err, string(data))
    				continue
    			}
    			if !bytes.Contains(data, []byte(`"kind":"`+kind+`","apiVersion":"`+gv.String()+`"`)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
                "type": "string"
              },
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/config.go

    		objects = append(objects, componentType)
    	}
    	sort.Strings(objects)
    	return objects
    }
    
    func mapLegacyKindsToGroups(kinds []string) ([]string, error) {
    	groups := []string{}
    	for _, kind := range kinds {
    		group, ok := legacyKindToGroupMap[kind]
    		if ok {
    			groups = append(groups, group)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                    }
                }
            }
            return kind.convertToNumber(value)?.let { opr1 ->
                other.kind.convertToNumber(other.value)?.let { opr2 ->
                    evalBinaryOp(
                        function.name.asString(),
                        kind.toCompileTimeType(),
                        opr1,
                        other.kind.toCompileTimeType(),
                        opr2
                    )?.let {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
                "type": "string"
              },
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

        if (value == "parameter") {
          argument_kinds.push_back(XlaArgument::Kind::kParameter);
        } else if (value == "resource") {
          argument_kinds.push_back(XlaArgument::Kind::kResource);
        } else {
          return errors::InvalidArgument(
              "Unsupported TF/XLA argument kind at index ",
              argument_kind_str.index(), ": ", value);
        }
      }
    
      return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. samples/security/spire/spire-quickstart.yaml

    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: spire-server-cluster-role-binding
    subjects:
    - kind: ServiceAccount
      name: spire-server
      namespace: spire
    roleRef:
      kind: ClusterRole
      name: spire-server-cluster-role
      apiGroup: rbac.authorization.k8s.io
    
    ---
    # Role for the SPIRE server.
    kind: Role
    apiVersion: rbac.authorization.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
Back to top