Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 186 for goTo (0.04 sec)

  1. scan.go

    					elem = reflectValue.Index(int(db.RowsAffected))
    					if onConflictDonothing {
    						for _, field := range fields {
    							if _, ok := field.ValueOf(db.Statement.Context, elem); !ok {
    								db.RowsAffected++
    								goto BEGIN
    							}
    						}
    					}
    				} else {
    					elem = reflect.New(reflectValueType)
    				}
    
    				db.scanIntoStruct(rows, elem, values, fields, joinFields)
    
    				if !update {
    					if !isPtr {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint32(n) >= uint32(len(text)) {
    			// “Length” is really encoded full text, and they match.
    			goto Same
    		}
    		{
    			// Compare actual texts.
    			n := int(n)
    			this := text[j:][:n]
    			last := text[lastPos:][:n]
    			for i := 0; i < n; i++ {
    				if this[i] != last[i] {
    					goto New
    				}
    			}
    			goto Same
    		}
    	New:
    		id++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    		if err != nil {
    			if err == errConfigNotFound {
    				return errNoSuchPolicy
    			}
    			retries--
    			if retries <= 0 {
    				return err
    			}
    			time.Sleep(500 * time.Millisecond)
    			goto retry
    		}
    
    		var p PolicyDoc
    		err = p.parseJSON(data)
    		if err != nil {
    			return err
    		}
    
    		if p.Version == 0 {
    			// This means that policy was in the old version (without any
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    	if info.size == 0 {
    		return 0
    	}
    	if s := rb.ss.next(info); s == ssStarter {
    		// TODO: this could be removed if we don't support merging.
    		if rb.nrune > 0 {
    			goto end
    		}
    	} else if s == ssOverflow {
    		rb.insertCGJ()
    		goto end
    	}
    	if err := rb.insertFlush(rb.src, sp, info); err != iSuccess {
    		return int(err)
    	}
    	for {
    		sp += int(info.size)
    		if sp >= rb.nsrc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//
    	// Example:
    	//  func f() int {
    	//  	goto L
    	//  	x := 2
    	//  L:
    	//  	x++
    	//  	return x
    	//  }
    	JumpOverDecl
    
    	// JumpIntoBlock occurs when a forward jump goes to a label inside a nested
    	// block.
    	//
    	// Example:
    	//  func f(x int) {
    	//  	goto L
    	//  	if x > 0 {
    	//  	L:
    	//  		print("inside block")
    	//  	}
    	// }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/math/rand/rand.go

    	// Instead of that, if we round up to 1, just try again.
    	// Getting 1 only happens 1/2⁵³ of the time, so most clients
    	// will not observe it anyway.
    again:
    	f := float64(r.Int63()) / (1 << 63)
    	if f == 1 {
    		goto again // resample; this branch is taken O(never)
    	}
    	return f
    }
    
    // Float32 returns, as a float32, a pseudo-random number in the half-open interval [0.0,1.0).
    func (r *Rand) Float32() float32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.go

    	//
    	// Example:
    	//  func f() int {
    	//  	goto L
    	//  	x := 2
    	//  L:
    	//  	x++
    	//  	return x
    	//  }
    	JumpOverDecl
    
    	// JumpIntoBlock occurs when a forward jump goes to a label inside a nested
    	// block.
    	//
    	// Example:
    	//  func f(x int) {
    	//  	goto L
    	//  	if x > 0 {
    	//  	L:
    	//  		print("inside block")
    	//  	}
    	// }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. cmd/sftp-server-driver.go

    		w.nextOffset += int64(n)
    		if n != len(nextOut) {
    			return 0, fmt.Errorf("expected write size %d but wrote %d bytes", len(nextOut), n)
    		}
    		if err != nil {
    			return 0, err
    		}
    		goto again
    	}
    
    	return len(b), nil
    }
    
    func (f *sftpDriver) Filewrite(r *sftp.Request) (w io.WriterAt, err error) {
    	stopFn := globalSftpMetrics.log(r, f.AccessKey())
    	defer func() {
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/link.go

    				vd.skip(len(s) - len(after))
    				s = after
    				goto Restart
    			}
    		}
    
    		if (c == 'h' || c == 'm' || c == 'x' || c == 'w') && (i == 0 || !isLetter(s[i-1])) {
    			if link, after, ok := p.parseAutoProto(s, i, vd); ok {
    				if i > 0 {
    					out = append(out, &Plain{Text: s[:i]})
    				}
    				out = append(out, link)
    				vd.skip(len(s) - len(after))
    				s = after
    				goto Restart
    			}
    		}
    	}
    	if out == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. 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)
Back to top