Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for frog (0.33 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. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    invitation from the Queen to play croquet.'  The Frog-Footman
    repeated, in the same solemn tone, only changing the order of the
    words a little, `From the Queen.  An invitation for the Duchess
    to play croquet.'
    
      Then they both bowed low, and their curls got entangled
    together.
    
      Alice laughed so much at this, that she had to run back into
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    invitation from the Queen to play croquet.'  The Frog-Footman
    repeated, in the same solemn tone, only changing the order of the
    words a little, `From the Queen.  An invitation for the Duchess
    to play croquet.'
    
      Then they both bowed low, and their curls got entangled
    together.
    
      Alice laughed so much at this, that she had to run back into
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/prog.go

    	}
    	args, err := quoted.Split(progAndArgs)
    	if err != nil {
    		base.Fatalf("GOCACHEPROG args: %v", err)
    	}
    	var prog string
    	if len(args) > 0 {
    		prog = args[0]
    		args = args[1:]
    	}
    
    	ctx, ctxCancel := context.WithCancel(context.Background())
    
    	cmd := exec.CommandContext(ctx, prog, args...)
    	out, err := cmd.StdoutPipe()
    	if err != nil {
    		base.Fatalf("StdoutPipe to GOCACHEPROG: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. 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)
  7. clause/from.go

    package clause
    
    // From from clause
    type From struct {
    	Tables []Table
    	Joins  []Join
    }
    
    // Name from clause name
    func (from From) Name() string {
    	return "FROM"
    }
    
    // Build build from clause
    func (from From) Build(builder Builder) {
    	if len(from.Tables) > 0 {
    		for idx, table := range from.Tables {
    			if idx > 0 {
    				builder.WriteByte(',')
    			}
    
    			builder.WriteQuoted(table)
    		}
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jul 15 02:25:10 UTC 2020
    - 630 bytes
    - Viewed (0)
  8. test/interface/private.dir/prog.go

    Rémy Oudompheng <******@****.***> 1349901327 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 608 bytes
    - Viewed (0)
  9. test/fixedbugs/bug324.dir/prog.go

    Rémy Oudompheng <******@****.***> 1349627825 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4590.dir/prog.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
Back to top