Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for Weaver (0.33 sec)

  1. api/go1.9.txt

    pkg net/http, method (*Server) RegisterOnShutdown(func())
    pkg net/http, method (*Server) ServeTLS(net.Listener, string, string) error
    pkg net/http/fcgi, func ProcessEnv(*http.Request) map[string]string
    pkg net/http/httptest, method (*Server) Certificate() *x509.Certificate
    pkg net/http/httptest, method (*Server) Client() *http.Client
    pkg reflect, func MakeMapWithSize(Type, int) Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopbce.go

    			continue
    		}
    
    		// Check for overflow/underflow. We need to make sure that inc never causes
    		// the induction variable to wrap around.
    		// We use a function wrapper here for easy return true / return false / keep going logic.
    		// This function returns true if the increment will never overflow/underflow.
    		ok := func() bool {
    			if step > 0 {
    				if limit.isGenericIntConst() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcarchive/carchive_test.go

    }
    
    // genHeader writes a C header file for the C-exported declarations found in .go
    // source files in dir.
    //
    // TODO(golang.org/issue/35715): This should be simpler.
    func genHeader(t *testing.T, header, dir string) {
    	t.Helper()
    
    	// The 'cgo' command generates a number of additional artifacts,
    	// but we're only interested in the header.
    	// Shunt the rest of the outputs to a temporary directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/check.go

    					if ln.b2l[b.ID] == nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header {
    						f.Fatalf("block %s not in loop branches to non-header block %s in loop", b.String(), bb.String())
    					}
    					if ln.b2l[b.ID] != nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header && !ln.b2l[b.ID].isWithinOrEq(ln.b2l[bb.ID]) {
    						f.Fatalf("block %s in loop branches to non-header block %s in non-containing loop", b.String(), bb.String())
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    	// most cases the wrapper would be (in effect) inlined, but are
    	// there (perhaps) indirect calls from the runtime that could run
    	// into trouble here.
    	// FIXME: at the moment all.bash does not pass when I leave out
    	// NOSPLIT for these wrappers, so all are currently tagged with NOSPLIT.
    	fn.Pragma |= ir.Nosplit
    
    	// Generate call. Use tail call if no params and no returns,
    	// but a regular call otherwise.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. doc/go_mem.html

    (at least not without direct knowledge of the precise behavior of <code>f</code>):
    </p>
    
    <pre>
    f()
    i := *p
    *q = 1
    </pre>
    
    <p>
    If the call never returned, then once again the original program
    would never access <code>*p</code> or <code>*q</code>, but the rewritten program would.
    And if the call contained synchronizing operations, then the original program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/x86/ssa.go

    		q.To.Reg = x86.REG_AX
    		opregreg(s, x86.AANDL, v.Reg(), x86.REG_AX)
    
    	case ssa.Op386InvertFlags:
    		v.Fatalf("InvertFlags should never make it to codegen %v", v.LongString())
    	case ssa.Op386FlagEQ, ssa.Op386FlagLT_ULT, ssa.Op386FlagLT_UGT, ssa.Op386FlagGT_ULT, ssa.Op386FlagGT_UGT:
    		v.Fatalf("Flag* ops should never make it to codegen %v", v.LongString())
    	case ssa.Op386REPSTOSL:
    		s.Prog(x86.AREP)
    		s.Prog(x86.ASTOSL)
    	case ssa.Op386REPMOVSL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/stackalloc.go

    		// that would be nondeterministic.
    		for _, v := range f.NamedValues[*name] {
    			if v.Op == OpArgIntReg || v.Op == OpArgFloatReg {
    				aux := v.Aux.(*AuxNameOffset)
    				// Never let an arg be bound to a differently named thing.
    				if name.N != aux.Name || name.Off != aux.Offset {
    					if f.pass.debug > stackDebug {
    						fmt.Printf("stackalloc register arg %s skipping name %s\n", v, name)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. api/go1.19.txt

    pkg encoding/binary, type AppendByteOrder interface, AppendUint64([]uint8, uint64) []uint8 #50601
    pkg encoding/binary, type AppendByteOrder interface, String() string #50601
    pkg encoding/csv, method (*Reader) InputOffset() int64 #43401
    pkg encoding/xml, method (*Decoder) InputPos() (int, int) #45628
    pkg flag, func TextVar(encoding.TextUnmarshaler, string, encoding.TextMarshaler, string) #45754
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/memcombine.go

    			}
    			if mark.contains(v.ID) {
    				// marked - means it is not the root of an OR tree
    				continue
    			}
    			// Add the OR tree rooted at v to the order.
    			// We use BFS here, but any walk that puts roots before leaves would work.
    			i := len(order)
    			order = append(order, v)
    			for ; i < len(order); i++ {
    				x := order[i]
    				for j := 0; j < 2; j++ {
    					a := x.Args[j]
    					if a.Op == OpOr16 || a.Op == OpOr32 || a.Op == OpOr64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top