Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 278 for Builtin (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/localize_var_handles.mlir

        // CHECK: [[name:%.*]] = "tf.VarHandleOp"
        // CHECK: "tf.ReadVariableOp"([[name]])
        %a = builtin.unrealized_conversion_cast to tensor<f32>
        %b = builtin.unrealized_conversion_cast to tensor<f32>
        %0, %1, %2 = "tf.WhileRegion"(%a, %b, %arg0) ({
          ^bb0(%ca: tensor<f32>, %cb: tensor<f32>, %cc: !res):
          %cond = builtin.unrealized_conversion_cast to tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 21:12:02 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. pkg/config/schema/resource/schema.go

    	// ClusterScoped is true for resource in cluster-level.
    	ClusterScoped bool
    
    	// Synthetic is true for resource that do not actually exist in a cluster
    	Synthetic bool
    
    	// Builtin is true for resources that are builtin (not CRD)
    	Builtin bool
    
    	// Identifier is the unique identifier for the resource
    	Identifier string
    
    	// Kind is the config proto type.
    	Kind string
    
    	// Plural is the type in plural.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/mkbuiltin.go

    //go:build ignore
    
    // Generate builtin.go from builtin/runtime.go.
    
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/parser"
    	"go/token"
    	"io"
    	"log"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    )
    
    var stdout = flag.Bool("stdout", false, "write to stdout instead of builtin.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/builtin_test.go

    func TestBuiltin(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	old, err := os.ReadFile("builtin.go")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	new, err := testenv.Command(t, testenv.GoToolPath(t), "run", "mkbuiltin.go", "-stdout").Output()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if !bytes.Equal(old, new) {
    		t.Fatal("builtin.go out of date; run mkbuiltin.go")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 608 bytes
    - Viewed (0)
  8. internal/kms/secret-key.go

    }
    
    // Version returns the version of the builtin KMS.
    func (secretKey) Version(ctx context.Context) (string, error) { return "v1", nil }
    
    // APIs returns an error since the builtin KMS does not provide a list of APIs.
    func (secretKey) APIs(ctx context.Context) ([]madmin.KMSAPI, error) {
    	return nil, ErrNotSupported
    }
    
    // Status returns a set of endpoints and their KMS status. Since, the builtin KMS is not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/callee.go

    import (
    	"go/ast"
    	"go/types"
    
    	"golang.org/x/tools/go/ast/astutil"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    // Callee returns the named target of a function call, if any:
    // a function, method, builtin, or variable.
    //
    // Functions and methods may potentially have type parameters.
    func Callee(info *types.Info, call *ast.CallExpr) types.Object {
    	fun := astutil.Unparen(call.Fun)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. internal/kms/conn.go

    	MinKES                  // MinIO MinKES
    	Builtin                 // Builtin single key KMS implementation
    )
    
    // Type identifies the KMS type.
    type Type uint
    
    // String returns the Type's string representation
    func (t Type) String() string {
    	switch t {
    	case MinKMS:
    		return "MinIO KMS"
    	case MinKES:
    		return "MinIO KES"
    	case Builtin:
    		return "MinIO builtin"
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top