Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 215 for original (0.14 sec)

  1. src/cmd/compile/internal/walk/range.go

    		//   hv1t := hv1
    		//   hv2 := rune(ha[hv1])
    		//   if hv2 < utf8.RuneSelf {
    		//      hv1++
    		//   } else {
    		//      hv2, hv1 = decoderune(ha, hv1)
    		//   }
    		//   v1, v2 = hv1t, hv2
    		//   // original body
    		// }
    
    		// order.stmt arranged for a copy of the string variable.
    		ha := a
    
    		hv1 := typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TINT])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    				err = p.fromPuny(p, u)
    			}
    			if err == nil {
    				// This should be called on NonTransitional, according to the
    				// spec, but that currently does not have any effect. Use the
    				// original profile to preserve options.
    				err = p.validateLabel(u)
    			}
    		} else if err == nil {
    			err = p.validateLabel(label)
    		}
    	}
    	if toASCII {
    		for labels.reset(); !labels.done(); labels.next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    //
    //	actionID(binary)/buildID(main.a)/contentID(binary)
    //
    // Storing the buildID(main.a) in the middle lets the computations that care
    // about the prefix or suffix halves ignore the middle and preserves the
    // original build ID as a contiguous string.)
    //
    // During the build, when it's time to build main.a, the gofmt binary has the
    // information needed to decide whether the eventual link would produce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	return nil
    }
    
    // collisionChecker finds case-insensitive name collisions and paths that
    // are listed as both files and directories.
    //
    // The keys of this map are processed with strToFold. pathInfo has the original
    // path for each folded path.
    type collisionChecker map[string]pathInfo
    
    type pathInfo struct {
    	path  string
    	isDir bool
    }
    
    func (cc collisionChecker) check(p string, isDir bool) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  5. src/go/types/issues_test.go

    	// (see last comment in this function)
    	sources := [...]string{
    		"package p; type A interface{ A() }",
    		"package p; type B interface{ B() }",
    		"package p; type X interface{ A; B }",
    	}
    
    	// compute original file ASTs
    	var orig [len(sources)]*ast.File
    	for i, src := range sources {
    		orig[i] = mustParse(fset, src)
    	}
    
    	// run the test for all order permutations of the incoming files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    // a given hash.
    func StoredHashIndex(level int, n int64) int64 {
    	// Level L's n'th hash is written right after level L+1's 2n+1'th hash.
    	// Work our way down to the level 0 ordering.
    	// We'll add back the original level count at the end.
    	for l := level; l > 0; l-- {
    		n = 2*n + 1
    	}
    
    	// Level 0's n'th hash is written at n+n/2+n/4+... (eventually n/2ⁱ hits zero).
    	i := int64(0)
    	for ; n > 0; n >>= 1 {
    		i += n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/expand_calls.go

    	if int(c.nextSlice) < len(c.regs) {
    		w := c.config.NumParamRegs(t)
    		c.nextSlice += Abi1RO(w)
    	}
    	return rc
    }
    
    // plus returns a register cursor offset from the original, without modifying the original.
    func (c *registerCursor) plus(regWidth Abi1RO) registerCursor {
    	rc := *c
    	rc.nextSlice += regWidth
    	return rc
    }
    
    // at returns the register cursor for component i of t, where the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. src/go/doc/doc.go

    	Decl *ast.FuncDecl
    
    	// methods
    	// (for functions, these fields have the respective zero value)
    	Recv  string // actual   receiver "T" or "*T" possibly followed by type parameters [P1, ..., Pn]
    	Orig  string // original receiver "T" or "*T"
    	Level int    // embedding level; 0 means not embedded
    
    	// Examples is a sorted list of examples associated with this
    	// function or method. Examples are extracted from _test.go files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/net/unixsock.go

    // Closing l does not affect f, and closing f does not affect l.
    //
    // The returned os.File's file descriptor is different from the
    // connection's. Attempting to change properties of the original
    // using this duplicate may or may not have the desired effect.
    func (l *UnixListener) File() (f *os.File, err error) {
    	if !l.ok() {
    		return nil, syscall.EINVAL
    	}
    	f, err = l.file()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server.go

    	}
    
    	c := hs.c
    	m := new(newSessionTicketMsg)
    
    	state := c.sessionState()
    	state.secret = hs.masterSecret
    	if hs.sessionState != nil {
    		// If this is re-wrapping an old key, then keep
    		// the original time it was created.
    		state.createdAt = hs.sessionState.createdAt
    	}
    	if c.config.WrapSession != nil {
    		var err error
    		m.ticket, err = c.config.WrapSession(c.connectionStateLocked(), state)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top