Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 318 for Builtin (0.19 sec)

  1. pkg/config/schema/metadata.yaml

        clusterScoped: true
        builtin: true
        proto: "k8s.io.api.core.v1.NodeSpec"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "Pod"
        plural: "pods"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.core.v1.PodSpec"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "DaemonSet"
        plural: "daemonsets"
        group: "apps"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.apps.v1.DaemonSetSpec"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_utils.h

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace tflite {
    
    // The following methods are introduced to resolve op builtin code shortage
    // problem. The new builtin operator will be assigned to the extended builtin
    // code field in the flatbuffer schema. Those methods helps to hide builtin code
    // details.
    BuiltinOperator GetBuiltinCode(const OperatorCode *op_code);
    
    BuiltinOperator GetBuiltinCode(const OperatorCodeT *op_code);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/disable_builtin.mlir

    // RUN: not flatbuffer_translate -mlir-to-tflite-flatbuffer -emit-builtin-tflite-ops=false %s 2>&1 | FileCheck %s
    
    // CHECK: 'tfl.add' op is a TFLite builtin op but builtin emission is not enabled
    
    func.func @main(tensor<3x2xi32>) -> tensor<3x2xi32> {
    ^bb0(%arg0: tensor<3x2xi32>):
      %0 = "arith.constant"() {name = "Const2", value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 547 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/install_goroot_targets.txt

    # (Though we can't try installing it without modifying goroot).
    env GODEBUG=installgoroot=all
    go list -f '{{.Target}}' fmt
    stdout fmt\.a
    
    # However, the fake packages "builtin" and "unsafe" do not.
    go list -f '{{.Target}}' builtin unsafe
    ! stdout .
    go install builtin unsafe  # Should succeed as no-ops.
    
    # With CGO_ENABLED=0, packages that would have
    # an install target with cgo on no longer do.
    env GODEBUG=
    env CGO_ENABLED=0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 747 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // The actual builtin operator code value will exist in the
    // `deprecated_builtin_code` field. At the same time, it implies that
    // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    // New builtin operators, whose operator code is larger than 127, can not be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_dot.txt

    # prefixless treatment of GOROOT itself.
    cd $WORK/othergoroot/src
    ! go list .
    stderr '^no Go files in '$WORK'[/\\]othergoroot[/\\]src$'
    
    go list ./builtin
    stdout '^std/builtin$'  # Only the "std" in actual $GOROOT is special, and only its "builtin" is special.
    
    ! go list ./bytes
    ! stderr 'cannot find module providing package'
    stderr '^no Go files in '$WORK'[/\\]othergoroot[/\\]src[/\\]bytes$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr-invalid.mlir

    // RUN: not tf-mlir-translate -mlir-tf-str-attr-to-mlir %s 2>&1 | FileCheck %s
    
    "builtin.totally @invalid MLIR module {here} <-"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 01 20:38:29 UTC 2021
    - 220 bytes
    - Viewed (0)
  8. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    {{- end}}
    )
    
    func create(c kube.Client, cfg config.Config, objMeta metav1.ObjectMeta) (metav1.Object, error) {
    	switch cfg.GroupVersionKind {
    {{- range .Entries }}
    	{{- if and (not .Resource.Synthetic) (not .Resource.Builtin) }}
    	case gvk.{{.Resource.Identifier}}:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. pkg/config/schema/codegen/templates/collections.go.tmpl

    			{{- if ne "" .Resource.StatusProtoPackage}}StatusPackage: "{{ .Resource.StatusProtoPackage }}", {{end}}
    			ClusterScoped: {{ .Resource.ClusterScoped }},
    			Synthetic: {{ .Resource.Synthetic }},
    			Builtin: {{ .Resource.Builtin }},
    			ValidateProto: {{ .Resource.Validate }},
    		}.MustBuild()
    {{ end }}
    
    	// All contains all collections in the system.
    	All = collection.NewSchemasBuilder().
    	{{- range .Entries }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_nopkgs.txt

    #
    # TODO(#30241): Maybe that won't always be the case?
    #
    # For that case, we emit a "malformed module path" error message,
    # which isn't ideal either.
    
    ! go get builtin/...  # in GOROOT/src, but contains no packages
    stderr '^go: builtin/...: malformed module path "builtin": missing dot in first path element$'
    
    -- go.mod --
    module example.net/emptysubdir
    
    go 1.16
    -- emptysubdir.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top