Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for stopCh (0.12 sec)

  1. src/reflect/all_test.go

    	// This is a little clumsy but makes the failure repeatable.
    	*CallGC = true
    
    	p := &Outer{Inner: new(Inner)}
    	p.Inner.X = p
    	ValueOf(p).Method(0).Call(nil)
    
    	// Stop garbage collecting during reflect.call.
    	*CallGC = false
    }
    
    func TestCallArgLive(t *testing.T) {
    	type T struct{ X, Y *string } // pointerful aggregate
    
    	F := func(t T) { *t.X = "ok" }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	.swig, .swigcxx
    //		SWIG definition files.
    //	.syso
    //		System object files.
    //
    // Files of each of these types except .syso may contain build
    // constraints, but the go command stops scanning for build constraints
    // at the first item in the file that is not a blank line or //-style
    // line comment. See the go/build package documentation for
    // more details.
    //
    // # The go.mod file
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    	pfxEnabled = buildcfg.GOPPC64 >= 10 && buildcfg.GOOS == "linux"
    	cfg := fmt.Sprintf("power%d/%s/%s", buildcfg.GOPPC64, buildcfg.GOARCH, buildcfg.GOOS)
    	if cfg == buildOpCfg {
    		// Already initialized to correct OS/cpu; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    	buildOpCfg = cfg
    
    	// Configure the optab entries which may generate prefix opcodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    			// byte in the function symbol s.
    			jt.Sym.WriteAddr(ctxt, int64(i)*8, 8, s, p.Pc)
    		}
    	}
    }
    
    func instinit(ctxt *obj.Link) {
    	if ycover[0] != 0 {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	switch ctxt.Headtype {
    	case objabi.Hplan9:
    		plan9privates = ctxt.Lookup("_privates")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top