Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,577 for frog (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    		}
    	}
    }
    
    func TestGetArticleForNoun(t *testing.T) {
    	tests := []struct {
    		noun    string
    		padding string
    		want    string
    	}{
    		{
    			noun:    "Frog",
    			padding: " ",
    			want:    " a ",
    		},
    		{
    			noun:    "frogs",
    			padding: " ",
    			want:    " ",
    		},
    		{
    			noun:    "apple",
    			padding: "",
    			want:    "an",
    		},
    		{
    			noun:    "Apples",
    			padding: " ",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"fried_egg":                            "\U0001f373",
    	"fried_shrimp":                         "\U0001f364",
    	"fries":                                "\U0001f35f",
    	"frog":                                 "\U0001f438",
    	"frowning":                             "\U0001f626",
    	"frowning_face":                        "\u2639\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. src/regexp/syntax/prog.go

    package syntax
    
    import (
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Compiled program.
    // May not belong in this package, but convenient for now.
    
    // A Prog is a compiled regular expression program.
    type Prog struct {
    	Inst   []Inst
    	Start  int // index of start instruction
    	NumCap int // number of InstCapture insts in re
    }
    
    // An InstOp is an instruction opcode.
    type InstOp uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. docs/distributed/distributed-from-config-file.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = ppc64.REGTMP
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REG_CTR
    
    			// Don't generate padding for
    			// loops with few iterations.
    			if ctr > 3 {
    				p = s.Prog(obj.APCALIGN)
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 16
    			}
    
    			// generate 4 STXVs to zero 64 bytes
    			var top *obj.Prog
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    				prog.To = a[2]
    				break
    			}
    			if arch.IsARMBFX(op) {
    				// a[0] and a[1] must be constants, a[2] must be a register
    				prog.From = a[0]
    				prog.AddRestSource(a[1])
    				prog.To = a[2]
    				break
    			}
    			// Otherwise the 2nd operand (a[1]) must be a register.
    			prog.From = a[0]
    			prog.Reg = p.getRegister(prog, op, &a[1])
    			prog.To = a[2]
    		case sys.AMD64:
    			prog.From = a[0]
    			prog.AddRestSource(a[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	case ASBREAK:
    		// SBREAK is the old name for EBREAK.
    		p.As = AEBREAK
    
    	case AMOV:
    		if p.From.Type == obj.TYPE_CONST && p.From.Name == obj.NAME_NONE && p.From.Reg == obj.REG_NONE && int64(int32(p.From.Offset)) != p.From.Offset {
    			ctz := bits.TrailingZeros64(uint64(p.From.Offset))
    			val := p.From.Offset >> ctz
    			if int64(int32(val)) == val {
    				// It's ok. We can handle constants with many trailing zeros.
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/util.go

    		sc += ".U"
    	}
    	return sc
    }
    
    func (p *Prog) String() string {
    	if p == nil {
    		return "<nil Prog>"
    	}
    	if p.Ctxt == nil {
    		return "<Prog without ctxt>"
    	}
    	return fmt.Sprintf("%.5d (%v)\t%s", p.Pc, p.Line(), p.InstructionString())
    }
    
    func (p *Prog) InnermostString(w io.Writer) {
    	if p == nil {
    		io.WriteString(w, "<nil Prog>")
    		return
    	}
    	if p.Ctxt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    		off := n - nbits // n > nbits because n > maxBits and nbits <= 7
    		// Leading src fragment.
    		src = subtractb(src, (off+7)/8)
    		if frag := off & 7; frag != 0 {
    			bits |= uintptr(*src) >> (8 - frag) << nbits
    			src = add1(src)
    			nbits += frag
    			c -= frag
    		}
    		// Main loop: load one byte, write another.
    		// The bits are rotating through the bit buffer.
    		for i := c / 8; i > 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    		}
    		if (p.From.Reg-obj.RBaseARM64)&REG_EXT != 0 ||
    			(p.From.Reg >= REG_LSL && p.From.Reg < REG_ARNG) {
    			amount := (p.From.Reg >> 5) & 7
    			if amount > 4 {
    				c.ctxt.Diag("shift amount out of range 0 to 4: %v", p)
    			}
    			o1 = c.opxrrr(p, p.As, rt, r, obj.REG_NONE, true)
    			o1 |= c.encRegShiftOrExt(p, &p.From, p.From.Reg) /* includes reg, op, etc */
    		} else {
    			o1 = c.opxrrr(p, p.As, rt, r, rf, false)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top