Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for cfunc (0.04 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    // concrete, real RISC-V instructions or directive pseudo-ops like TEXT,
    // PCDATA, and FUNCDATA.
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	// Generate the prologue.
    	text := cursym.Func().Text
    	if text.As != obj.ATEXT {
    		ctxt.Diag("preprocess: found symbol that does not start with TEXT directive")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	}
    }
    
    // usage: defer p.trace(msg)()
    func (p *parser) trace(msg string) func() {
    	p.print(msg + " (")
    	const tab = ". "
    	p.indent = append(p.indent, tab...)
    	return func() {
    		p.indent = p.indent[:len(p.indent)-len(tab)]
    		if x := recover(); x != nil {
    			panic(x) // skip print_trace
    		}
    		p.print(")")
    	}
    }
    
    func (p *parser) print(msg string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    		// Run multiple times to shake out data races
    		t.Run("goroutine launches", testLaunches)
    	}
    }
    
    func BenchmarkGoroutine(b *testing.B) {
    	withIdle := func(n int, fn func(b *testing.B)) func(b *testing.B) {
    		return func(b *testing.B) {
    			c := make(chan int)
    			var ready, done sync.WaitGroup
    			defer func() {
    				close(c)
    				done.Wait()
    			}()
    
    			for i := 0; i < n; i++ {
    				ready.Add(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    `cluster_func`.
    
    For example, given the following `cluster_func` wrapping `func`:
    
    ```mlir
      func @test(%arg0: tensor<*xi32>) {
        "tf_device.cluster_func"(%arg0) {
            func = @func,
            step_marker_location = ""} : (tensor<*xi32>) -> tensor<*xi32>
        return
      }
    
      func @func(%arg0: tensor<*xi32>) -> tensor<*xi32> {
        %0 = "tf.XlaSharding"(%arg0) {_XlaSharding = "\01\02\03",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.tempFile("src/t/t2/t2_test.go", "package t\nimport _ \"p1\"\nimport \"testing\"\nfunc Test2(*testing.T) {}\n")
    	tg.tempFile("src/t/t3/t3_test.go", "package t\nimport \"p1\"\nimport \"testing\"\nfunc Test3(t *testing.T) {t.Log(p1.X)}\n")
    	tg.tempFile("src/t/t4/t4_test.go", "package t\nimport \"p2\"\nimport \"testing\"\nfunc Test4(t *testing.T) {t.Log(p2.X)}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/reflect/type.go

    }
    
    func (t *rtype) NumIn() int {
    	if t.Kind() != Func {
    		panic("reflect: NumIn of non-func type " + t.String())
    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return tt.NumIn()
    }
    
    func (t *rtype) NumOut() int {
    	if t.Kind() != Func {
    		panic("reflect: NumOut of non-func type " + t.String())
    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return tt.NumOut()
    }
    
    func (t *rtype) Out(i int) Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    //
    // heading and test.variant must be non-empty.
    func (t *tester) registerTest(heading string, test *goTest, opts ...registerTestOpt) {
    	var skipFunc func(*distTest) (string, bool)
    	for _, opt := range opts {
    		switch opt := opt.(type) {
    		case rtSkipFunc:
    			skipFunc = opt.skip
    		}
    	}
    	// Register each test package as a separate test.
    	register1 := func(test *goTest) {
    		if test.variant == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top