Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,668 for book (0.19 sec)

  1. src/internal/coverage/cfile/ts_test.go

    	strout := sb.String()
    	want := "of statements"
    	if !strings.Contains(strout, want) {
    		t.Logf("output from run: %s\n", strout)
    		t.Fatalf("percent output missing token: %q", want)
    	}
    }
    
    var funcInvoked bool
    
    //go:noinline
    func thisFunctionOnlyCalledFromSnapshotTest(n int) int {
    	if funcInvoked {
    		panic("bad")
    	}
    	funcInvoked = true
    
    	// Contents here not especially important, just so long as we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

    using llvm::cl::opt;
    
    // These command line flags enable control of the translation implementation.
    bool emit_builtin_tflite_ops;
    bool emit_custom_ops;
    bool emit_select_tf_ops;
    bool lower_tensor_list_ops;
    bool strip_debug_info;
    bool use_buffer_offset;
    bool emit_stablehlo_ops;
    bool disable_vhlo_to_stablehlo;
    
    // NOLINTNEXTLINE
    static opt<bool, true> emit_builtin_tflite_ops_flag(
        "emit-builtin-tflite-ops",
        llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64latelower.go

    	}
    	return false
    }
    func rewriteValueAMD64latelower_OpAMD64MOVBQZX(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (MOVBQZX x)
    	// cond: zeroUpper56Bits(x,3)
    	// result: x
    	for {
    		x := v_0
    		if !(zeroUpper56Bits(x, 3)) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValueAMD64latelower_OpAMD64MOVLQZX(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (MOVLQZX x)
    	// cond: zeroUpper32Bits(x,3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tests/helper_test.go

    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"gorm.io/gorm"
    
    	. "gorm.io/gorm/utils/tests"
    )
    
    type Config struct {
    	Account   bool
    	Pets      int
    	Toys      int
    	Company   bool
    	Manager   bool
    	Team      int
    	Languages int
    	Friends   int
    	NamedPet  bool
    	Tools     int
    }
    
    func GetUser(name string, config Config) *User {
    	var (
    		birthday = time.Now().Round(time.Second)
    		user     = User{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/cmd/go/scriptconds_test.go

    	GOARCH, _ := s.LookupEnv("GOARCH")
    	return cfg.DefaultCC(GOOS, GOARCH) == want, nil
    }
    
    func sysCondition(flag string, f func(goos, goarch string) bool, needsCgo bool) script.Cond {
    	return script.Condition(
    		"GOOS/GOARCH supports "+flag,
    		func(s *script.State) (bool, error) {
    			GOOS, _ := s.LookupEnv("GOOS")
    			GOARCH, _ := s.LookupEnv("GOARCH")
    			cross := goHostOS != GOOS || goHostArch != GOARCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/internal/platform/supported.go

    // symbols on goos/goarch.
    func ExecutableHasDWARF(goos, goarch string) bool {
    	switch goos {
    	case "plan9", "ios":
    		return false
    	}
    	return true
    }
    
    // osArchInfo describes information about an OSArch extracted from cmd/dist and
    // stored in the generated distInfo map.
    type osArchInfo struct {
    	CgoSupported bool
    	FirstClass   bool
    	Broken       bool
    }
    
    // CgoSupported reports whether goos/goarch supports cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    // model.
    PyObject* MlirQuantizeModel(PyObject* data, bool disable_per_channel,
                                bool fully_quantize, int inference_type,
                                int input_data_type, int output_data_type,
                                bool enable_numeric_verify = false,
                                bool enable_whole_model_verify = false,
                                PyObject* op_denylist = nullptr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/reflect/badlinkname.go

    func badlinkname_rtype_FieldByName(*rtype, string) (StructField, bool)
    
    //go:linkname badlinkname_rtype_FieldByNameFunc reflect.(*rtype).FieldByNameFunc
    func badlinkname_rtype_FieldByNameFunc(*rtype, func(string) bool) (StructField, bool)
    
    //go:linkname badlinkname_rtype_Implements reflect.(*rtype).Implements
    func badlinkname_rtype_Implements(*rtype, Type) bool
    
    //go:linkname badlinkname_rtype_In reflect.(*rtype).In
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/reflect/iter.go

    			break
    		}
    		return func(yield func(Value) bool) {
    			v = v.Elem()
    			for i := range v.Len() {
    				if !yield(ValueOf(i)) {
    					return
    				}
    			}
    		}
    	case Array, Slice:
    		return func(yield func(Value) bool) {
    			for i := range v.Len() {
    				if !yield(ValueOf(i)) {
    					return
    				}
    			}
    		}
    	case String:
    		return func(yield func(Value) bool) {
    			for i := range v.String() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/cluster/clusters.go

    		}
    	}
    	return false
    }
    
    func exclude(exclude ...Cluster) func(Cluster) bool {
    	return func(cc Cluster) bool {
    		for _, e := range exclude {
    			if cc.Name() == e.Name() {
    				return true
    			}
    		}
    		return false
    	}
    }
    
    func (c Clusters) filterClusters(included func(Cluster) bool,
    	excluded func(Cluster) bool,
    ) Clusters {
    	var out Clusters
    	for _, cc := range c {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top