Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 318 for Builtin (0.14 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(func.func(tf-tensor-device-copy),tfrt-lower-tf-savedmodel{hoist-invariant-ops=true},tf-to-tfrt{tfrt-cost-threshold=1024 tfrt-merge-inter-dependent-streams=true})' %s | FileCheck %s --dump-input-filter=all
    
    // CHECK-NOT: tf_saved_model.semantics
    // CHECK: tfrt.cost_threshold = 1024
    // CHECK-SAME: tfrt.merge_inter_dependent_streams = true
    module attributes {tf_saved_model.semantics} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    			check.errorf(call.ArgList[n-1], WrongArgCount, "too many arguments in conversion to %s", T)
    		}
    		x.expr = call
    		return conversion
    
    	case builtin:
    		// no need to check for non-genericity here
    		id := x.id
    		if !check.builtin(x, call, id) {
    			x.mode = invalid
    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/universe.go

    	StringSize = RoundUp(SliceLenOffset+int64(PtrSize), int64(PtrSize))
    
    	for et := Kind(0); et < NTYPE; et++ {
    		SimType[et] = et
    	}
    
    	Types[TANY] = newType(TANY) // note: an old placeholder type, NOT the new builtin 'any' alias for interface{}
    	Types[TINTER] = NewInterface(nil)
    	CheckSize(Types[TINTER])
    
    	defBasic := func(kind Kind, pkg *Pkg, name string) *Type {
    		typ := newType(kind)
    		obj := defTypeName(pkg.Lookup(name), typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. api/go1.5.txt

    pkg go/types, method (*Builtin) Exported() bool
    pkg go/types, method (*Builtin) Id() string
    pkg go/types, method (*Builtin) Name() string
    pkg go/types, method (*Builtin) Parent() *Scope
    pkg go/types, method (*Builtin) Pkg() *Package
    pkg go/types, method (*Builtin) Pos() token.Pos
    pkg go/types, method (*Builtin) String() string
    pkg go/types, method (*Builtin) Type() Type
    pkg go/types, method (*Chan) Dir() ChanDir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/decls4.go

    type (
    	W0 /* ERROR "invalid recursive type" */ = W1
    	W1 = (W2)
    	W2 = ((W0))
    )
    
    func (W0) m() {} // no error expected (due to above cycle error)
    func (W1) n() {}
    
    // alias receiver types (invalid due to builtin underlying type)
    type (
    	B0 = B1
    	B1 = B2
    	B2 = int
    )
    
    func (B0 /* ERRORx "cannot define new methods on non-local type (int|B)" */ ) m() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/retry/retry.go

    func DefaultPolicy() *route.RetryPolicy {
    	policy := defaultPolicy()
    	policy.RetryHostPredicate = []*route.RetryPolicy_RetryHostPredicate{
    		// to configure retries to prefer hosts that haven’t been attempted already,
    		// the builtin `envoy.retry_host_predicates.previous_hosts` predicate can be used.
    		xdsfilters.RetryPreviousHosts,
    	}
    	return policy
    }
    
    func defaultPolicy() *route.RetryPolicy {
    	policy := route.RetryPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. test/stress/parsego.go

    	}
    }
    
    // find . -type d -not -path "./exp" -not -path "./exp/*" -printf "\t\"%p\",\n" | sort | sed "s/\.\///" | grep -v testdata
    var packages = []string{
    	"archive",
    	"archive/tar",
    	"archive/zip",
    	"bufio",
    	"builtin",
    	"bytes",
    	"compress",
    	"compress/bzip2",
    	"compress/flate",
    	"compress/gzip",
    	"compress/lzw",
    	"compress/zlib",
    	"container",
    	"container/heap",
    	"container/list",
    	"container/ring",
    	"crypto",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

                                                   serialized_flatbuffer.size());
      tflite::ops::builtin::BuiltinOpResolver builtins;
      std::unique_ptr<tflite::Interpreter> interpreter;
      QCHECK(tflite::InterpreterBuilder(*model, builtins)(&interpreter) ==
             kTfLiteOk);
      QCHECK(interpreter->AllocateTensors() == kTfLiteOk);
      QCHECK(interpreter->Invoke() == kTfLiteOk);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/go/types/call.go

    			check.use(call.Args...)
    			check.errorf(call.Args[n-1], WrongArgCount, "too many arguments in conversion to %s", T)
    		}
    		x.expr = call
    		return conversion
    
    	case builtin:
    		// no need to check for non-genericity here
    		id := x.id
    		if !check.builtin(x, call, id) {
    			x.mode = invalid
    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    			[]v1.Secret{},
    			credentialprovider.DockerConfig(map[string]credentialprovider.DockerConfigEntry{
    				"extraneous": {Username: "built-in", Password: "password", Provider: nil},
    			}),
    			nil,
    		},
    		"builtin keyring secrets, but use passed": {
    			"ubuntu",
    			[]v1.Secret{{Type: v1.SecretTypeDockercfg, Data: map[string][]byte{v1.DockerConfigKey: dockercfgContent}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top