Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for goTo (0.04 sec)

  1. src/cmd/compile/internal/ssa/deadstore.go

    			// the first logical store in the block.
    			// (Even if it isn't the first in the current b.Values order.)
    			continue
    		}
    		for _, a := range v.Args {
    			if a.Block == b && a.Type.IsMemory() {
    				v = a
    				goto walkloop
    			}
    		}
    	}
    }
    
    // A shadowRange encodes a set of byte offsets [lo():hi()] from
    // a given pointer that will be written to later in the block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/runtime/iface.go

    	t := (*itabTableType)(atomic.Loadp(unsafe.Pointer(&itabTable)))
    	if m = t.find(inter, typ); m != nil {
    		goto finish
    	}
    
    	// Not found.  Grab the lock and try again.
    	lock(&itabLock)
    	if m = itabTable.find(inter, typ); m != nil {
    		unlock(&itabLock)
    		goto finish
    	}
    
    	// Entry doesn't exist yet. Make a new entry & add it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. cmd/s3-zip-handlers.go

    					if len(listObjectsInfo.Prefixes) == 0 || commonPrefix != listObjectsInfo.Prefixes[len(listObjectsInfo.Prefixes)-1] {
    						listObjectsInfo.Prefixes = append(listObjectsInfo.Prefixes, commonPrefix)
    						count++
    					}
    					goto next
    				}
    			}
    			listObjectsInfo.Objects = append(listObjectsInfo.Objects, ObjectInfo{
    				Bucket:  bucket,
    				Name:    objName,
    				Size:    int64(file.UncompressedSize64),
    				ModTime: zipObjInfo.ModTime,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. cmd/sftp-server.go

    		if !globalIAMSys.LDAPConfig.Enabled() {
    			return nil, errSFTPLDAPNotEnabled
    		}
    		return processLDAPAuthentication(key, pass, user)
    	}
    
    	user, found = strings.CutSuffix(c.User(), "=svc")
    	if found {
    		goto internalAuth
    	}
    
    	if globalIAMSys.LDAPConfig.Enabled() {
    		perms, _ := processLDAPAuthentication(key, pass, user)
    		if perms != nil {
    			return perms, nil
    		}
    	}
    
    internalAuth:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    				continue
    			}
    			// WBend appears at the start of a block, like this:
    			//    ...
    			//    if wbEnabled: goto C else D
    			// C:
    			//    ... some write barrier enabled code ...
    			//    goto B
    			// D:
    			//    ... some write barrier disabled code ...
    			//    goto B
    			// B:
    			//    m1 = Phi mem_C mem_D
    			//    m2 = store operation ... m1
    			//    m3 = store operation ... m2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/cmd/cover/cover.go

    			end = f.statementBoundary(stmt)
    			if f.endsBasicSourceBlock(stmt) {
    				// If it is a labeled statement, we need to place a counter between
    				// the label and its statement because it may be the target of a goto
    				// and thus start a basic block. That is, given
    				//	foo: stmt
    				// we need to create
    				//	foo: ; stmt
    				// and mark the label as a block-terminating statement.
    				// The result will then be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/database/sql/convert.go

    			nvargs = nvargs[:len(nvargs)-1]
    			continue
    		case driver.ErrSkip:
    			if nextCC {
    				nextCC = false
    				checker = cc.CheckNamedValue
    			} else {
    				checker = defaultCheckNamedValue
    			}
    			goto nextCheck
    		default:
    			return nil, fmt.Errorf("sql: converting argument %s type: %w", describeNamedValue(nv), err)
    		}
    	}
    
    	// Check the length of arguments after conversion to allow for omitted
    	// arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    // JumpTable   [integer Value]  [succ1,succ2,..]
    
    var genericBlocks = []blockData{
    	{name: "Plain"},                  // a single successor
    	{name: "If", controls: 1},        // if Controls[0] goto Succs[0] else goto Succs[1]
    	{name: "Defer", controls: 1},     // Succs[0]=defer queued, Succs[1]=defer recovered. Controls[0] is call op (of memory type)
    	{name: "Ret", controls: 1},       // no successors, Controls[0] value is memory result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/runtime/sema.go

    func (root *semaRoot) dequeue(addr *uint32) (found *sudog, now, tailtime int64) {
    	ps := &root.treap
    	s := *ps
    	for ; s != nil; s = *ps {
    		if s.elem == unsafe.Pointer(addr) {
    			goto Found
    		}
    		if uintptr(unsafe.Pointer(addr)) < uintptr(s.elem) {
    			ps = &s.prev
    		} else {
    			ps = &s.next
    		}
    	}
    	return nil, 0, 0
    
    Found:
    	now = int64(0)
    	if s.acquiretime != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/inline.go

    	// To enable this optimization, following cmark-gfm, we declare by fiat
    	// that more than maxBackticks backquotes is too many.
    	if n > len(b.last) || b.scanned && b.last[n-1] < i+n {
    		goto NoMatch
    	}
    
    	for end := i + n; end < len(s); {
    		if s[end] != '`' {
    			end++
    			continue
    		}
    		estart := end
    		for end < len(s) && s[end] == '`' {
    			end++
    		}
    		m := end - estart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top