Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 190 for doThing (0.65 sec)

  1. src/archive/tar/strconv.go

    		var inv byte // 0x00 if positive or zero, 0xff if negative
    		if b[0]&0x40 != 0 {
    			inv = 0xff
    		}
    
    		var x uint64
    		for i, c := range b {
    			c ^= inv // Inverts c only if inv is 0xff, otherwise does nothing
    			if i == 0 {
    				c &= 0x7f // Ignore signal bit in first byte
    			}
    			if (x >> 56) > 0 {
    				p.err = ErrHeader // Integer overflow
    				return 0
    			}
    			x = x<<8 | uint64(c)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    func newCompleter(fns []string) func(string) string {
    	return func(line string) string {
    		switch tokens := strings.Fields(line); len(tokens) {
    		case 0:
    			// Nothing to complete
    		case 1:
    			// Single token -- complete command name
    			if match := matchVariableOrCommand(tokens[0]); match != "" {
    				return match
    			}
    		case 2:
    			if tokens[0] == "help" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/poset.go

    			//      DAG          New      Action
    			//      ---------------------------------------------------
    			// #1:  N1<=X<=N2 |  N1<=N2 | do nothing
    			// #2:  N1<=X<=N2 |  N1<N2  | add strict edge (N1<N2)
    			// #3:  N1<X<N2   |  N1<=N2 | do nothing (we already know more)
    			// #4:  N1<X<N2   |  N1<N2  | do nothing
    
    			// Check if we're in case #2
    			if strict && !po.reaches(i1, i2, true) {
    				po.addchild(i1, i2, true)
    				return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    	refsErr error
    
    	localTagsOnce sync.Once
    	localTags     sync.Map // map[string]bool
    }
    
    const (
    	// How much have we fetched into the git repo (in this process)?
    	fetchNone = iota // nothing yet
    	fetchSome        // shallow fetches of individual hashes
    	fetchAll         // "fetch -t origin": get all remote branches and tags
    )
    
    // loadLocalTags loads tag references from the local git cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    }
    
    func (ctxt *Link) loadlib() {
    	var flags uint32
    	if *flagCheckLinkname {
    		flags |= loader.FlagCheckLinkname
    	}
    	switch *FlagStrictDups {
    	case 0:
    		// nothing to do
    	case 1, 2:
    		flags |= loader.FlagStrictDups
    	default:
    		log.Fatalf("invalid -strictdups flag value %d", *FlagStrictDups)
    	}
    	ctxt.loader = loader.NewLoader(flags, &ctxt.ErrorReporter.ErrorReporter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    		case "arm":
    			s.allocatable &^= 1 << 9 // R9
    		case "arm64":
    			// nothing to do
    		case "loong64": // R2 (aka TP) already reserved.
    			// nothing to do
    		case "ppc64le": // R2 already reserved.
    			// nothing to do
    		case "riscv64": // X3 (aka GP) and X4 (aka TP) already reserved.
    			// nothing to do
    		case "s390x":
    			s.allocatable &^= 1 << 11 // R11
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/mvs/mvs_test.go

    # And C1 requires B2.hidden, and B2.hidden also meets our requirements:
    # it is compatible with D1 and a strict downgrade from B3.
    #
    # Since neither the initial nor the final build list includes B1,
    # and the nothing in the final downgraded build list requires E at all,
    # no dependency on E1 (required by only B1) should be introduced.
    #
    name: downhiddenartifact
    A: B3 C2
    A1: B3
    B1: E1
    B2.hidden:
    B3: D2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typexpr.go

    // validVarType reports an error if typ is a constraint interface.
    // The expression e is used for error reporting, if any.
    func (check *Checker) validVarType(e syntax.Expr, typ Type) {
    	// If we have a type parameter there's nothing to do.
    	if isTypeParam(typ) {
    		return
    	}
    
    	// We don't want to call under() or complete interfaces while we are in
    	// the middle of type-checking parameter declarations that might belong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/lookup.go

    // into a single entry marked as containing multiples. The result is the
    // consolidated list.
    func consolidateMultiples(list []embeddedType) []embeddedType {
    	if len(list) <= 1 {
    		return list // at most one entry - nothing to do
    	}
    
    	n := 0                     // number of entries w/ unique type
    	prev := make(map[Type]int) // index at which type was previously seen
    	for _, e := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    			a.Offset = int64(r2)
    			// Nothing may follow
    			return
    		}
    		if p.arch.Family == sys.PPC64 {
    			// Special form for PPC64: (R1+R2); alias for (R1)(R2).
    			if prefix != 0 || scale != 0 {
    				p.errorf("illegal address mode for register+register")
    				return
    			}
    			a.Type = obj.TYPE_MEM
    			a.Scale = 0
    			a.Index = r2
    			// Nothing may follow.
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top