Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for Mitake (0.25 sec)

  1. src/cmd/cgo/internal/testnocgo/nocgo.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that -static works when not using cgo.  This test is in
    // misc/cgo to take advantage of the testing framework support for
    // when -static is expected to work.
    
    package nocgo
    
    func NoCgo() int {
    	c := make(chan int)
    
    	// The test is run with external linking, which means that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 574 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritedec.go

    		v1.AddArg(ptr)
    		v0.AddArg2(v1, mem)
    		return true
    	}
    	return false
    }
    func rewriteValuedec_OpIMake(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (IMake _typ (StructMake1 val))
    	// result: (IMake _typ val)
    	for {
    		_typ := v_0
    		if v_1.Op != OpStructMake1 {
    			break
    		}
    		val := v_1.Args[0]
    		v.reset(OpIMake)
    		v.AddArg2(_typ, val)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp.go

    func (t *worklist) buildDefUses() {
    	for _, block := range t.f.Blocks {
    		for _, val := range block.Values {
    			for _, arg := range val.Args {
    				// find its uses, only uses that can become constants take into account
    				if possibleConst(arg) && possibleConst(val) {
    					if _, exist := t.defUse[arg]; !exist {
    						t.defUse[arg] = make([]*Value, 0, arg.Uses)
    					}
    					t.defUse[arg] = append(t.defUse[arg], val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcweb/svn.go

    // that serves the (non-HTTP) 'svn' protocol. The test binary can retrieve the
    // URL for that port by sending an HTTP request with the query parameter
    // "vcwebsvn=1".
    //
    // We take this approach because the 'svn' protocol is implemented by a
    // lightweight 'svnserve' binary that is usually packaged along with the 'svn'
    // client binary, whereas only known implementation of the Subversion HTTP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    		br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil)
    		br.SetPos(br.Pos().WithNotStmt())
    		defaultGoto = br
    	}
    
    	s.Emit(&sw.Compiled)
    	sw.Compiled.Append(defaultGoto)
    	sw.Compiled.Append(body.Take()...)
    	walkStmtList(sw.Compiled)
    }
    
    // An exprSwitch walks an expression switch.
    type exprSwitch struct {
    	pos      src.XPos
    	exprname ir.Node // value being switched on
    
    	done    ir.Nodes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/select.go

    			n := n.(*ir.AssignListStmt)
    			if !ir.IsBlank(n.Lhs[1]) {
    				x := ir.NewAssignStmt(base.Pos, n.Lhs[1], recvOK)
    				list.Append(typecheck.Stmt(x))
    			}
    		}
    
    		list.Append(cas.Body.Take()...)
    		list.Append(ir.NewBranchStmt(base.Pos, ir.OBREAK, nil))
    
    		var r ir.Node
    		if cond != nil {
    			cond = typecheck.Expr(cond)
    			cond = typecheck.DefaultLit(cond, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    forth). A Go function called by C code may take C pointers as arguments,
    and it may store non-pointer data, C pointers, or Go pointers to pinned
    memory through those pointers. It may not store a Go pointer to unpinned
    memory in memory pointed to by a C pointer (which again, implies that it
    may not store a string, slice, channel, and so forth). A Go function
    called by C code may take a Go pointer but it must preserve the property
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    		if enableCoreTypeUnification {
    			// Because the core type is always an underlying type,
    			// unification will take care of matching against a
    			// defined or literal type automatically.
    			// If y is also an unbound type parameter, we will end
    			// up here again with x and y swapped, so we don't
    			// need to take care of that case separately.
    			if cx := coreType(x); cx != nil {
    				if traceInference {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/ast.go

    func (f *File) saveRef(n *ast.Expr, context astContext) {
    	sel := (*n).(*ast.SelectorExpr)
    	// For now, assume that the only instance of capital C is when
    	// used as the imported package identifier.
    	// The parser should take care of scoping in the future, so
    	// that we will be able to distinguish a "top-level C" from a
    	// local C.
    	if l, ok := sel.X.(*ast.Ident); !ok || l.Name != "C" {
    		return
    	}
    	if context == ctxAssign2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	    Run enough iterations of the fuzz target during fuzzing to take t,
    	    specified as a time.Duration (for example, -fuzztime 1h30s).
    		The default is to run forever.
    	    The special syntax Nx means to run the fuzz target N times
    	    (for example, -fuzztime 1000x).
    
    	-fuzzminimizetime t
    	    Run enough iterations of the fuzz target during each minimization
    	    attempt to take t, as specified as a time.Duration (for example,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top