Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for predict (0.56 sec)

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

    		jmp := blockJump[b.Kind]
    		switch next {
    		case b.Succs[0].Block():
    			s.Br(jmp.invasm, b.Succs[1].Block())
    			if jmp.invasmun {
    				// TODO: The second branch is probably predict-not-taken since it is for FP unordered
    				s.Br(ppc64.ABVS, b.Succs[1].Block())
    			}
    		case b.Succs[1].Block():
    			s.Br(jmp.asm, b.Succs[0].Block())
    			if jmp.asmeq {
    				s.Br(ppc64.ABEQ, b.Succs[0].Block())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    			}
    		}
    	}
    }
    
    type predicate struct {
    	f    func(r rune) bool
    	name string
    }
    
    var isSpace = predicate{unicode.IsSpace, "IsSpace"}
    var isDigit = predicate{unicode.IsDigit, "IsDigit"}
    var isUpper = predicate{unicode.IsUpper, "IsUpper"}
    var isValidRune = predicate{
    	func(r rune) bool {
    		return r != utf8.RuneError
    	},
    	"IsValidRune",
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{38, "SIGTALRM", "signal 38"},
    	{39, "SIGWAITING", "signal 39"},
    	{48, "SIGSYSERROR", "signal 48"},
    	{49, "SIGCAPI", "signal 49"},
    	{58, "SIGRECONFIG", "signal 58"},
    	{59, "SIGCPUFAIL", "CPU Failure Predicted"},
    	{60, "SIGGRANT", "monitor mode granted"},
    	{61, "SIGRETRACT", "monitor mode retracted"},
    	{62, "SIGSOUND", "sound completed"},
    	{63, "SIGMAX32", "secure attention"},
    	{255, "SIGMAX", "signal 255"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	defer func() {
    		for _, name := range clean {
    			xremove(name)
    		}
    	}()
    
    	// dir = full path to pkg.
    	dir := pathf("%s/src/%s", goroot, pkg)
    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	return d
    }
    
    // extractName splits the expression x into (name, expr) if syntactically
    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    //	x           force    name    expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{38, "SIGTALRM", "signal 38"},
    	{39, "SIGWAITING", "signal 39"},
    	{48, "SIGSYSERROR", "signal 48"},
    	{49, "SIGCAPI", "signal 49"},
    	{58, "SIGRECONFIG", "signal 58"},
    	{59, "SIGCPUFAIL", "CPU Failure Predicted"},
    	{60, "SIGKAP", "monitor mode granted"},
    	{61, "SIGRETRACT", "monitor mode retracted"},
    	{62, "SIGSOUND", "sound completed"},
    	{63, "SIGSAK", "secure attention"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
Back to top