Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 111 for bline (0.18 sec)

  1. src/cmd/go/internal/modget/get.go

    'go get' accepts the following flags.
    
    The -t flag instructs get to consider modules needed to build tests of
    packages specified on the command line.
    
    The -u flag instructs get to update modules providing dependencies
    of packages named on the command line to use newer minor or patch
    releases when available.
    
    The -u=patch flag (not -u patch) also instructs get to update dependencies,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			}
    			route := ws.GET(action.Path).To(handler).
    				Doc(doc).
    				Param(ws.QueryParameter("pretty", "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).")).
    				Operation("read"+namespaced+kind+strings.Title(subresource)+operationSuffix).
    				Produces(append(storageMeta.ProducesMIMETypes(action.Verb), mediaTypes...)...).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    	{"", ""},
    	{"a", "A"},
    	{" aaa aaa aaa ", " Aaa Aaa Aaa "},
    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    	{"ÿøû", "Ÿøû"},
    	{"with_underscore", "With_underscore"},
    	{"unicode \xe2\x80\xa8 line separator", "Unicode \xe2\x80\xa8 Line Separator"},
    }
    
    func TestTitle(t *testing.T) {
    	for _, tt := range TitleTests {
    		if s := Title(tt.in); s != tt.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	tg.run("build", "-ldflags", "-v", "-o", os.DevNull, tg.path("a.go"))
    	// Find line that has "host link:" in linker output.
    	stderr := tg.getStderr()
    	var hostLinkLine string
    	for _, line := range strings.Split(stderr, "\n") {
    		if !strings.Contains(line, "host link:") {
    			continue
    		}
    		hostLinkLine = line
    		break
    	}
    	if hostLinkLine == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	r.Header.Set("Authorization", "Basic "+basicAuth(username, password))
    }
    
    // parseRequestLine parses "GET /foo HTTP/1.1" into its three parts.
    func parseRequestLine(line string) (method, requestURI, proto string, ok bool) {
    	method, rest, ok1 := strings.Cut(line, " ")
    	requestURI, proto, ok2 := strings.Cut(rest, " ")
    	if !ok1 || !ok2 {
    		return "", "", "", false
    	}
    	return method, requestURI, proto, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint64(0) // byte-only
    
    	// This stanza (until the blank line) is the "LMS-substring iterator",
    	// described in placeLMS_8_64 above, with one line added to maintain cx.
    	c0, c1, isTypeS := byte(0), byte(0), false
    	for i := len(text) - 1; i >= 0; i-- {
    		c0, c1 = text[i], c0
    		cx = cx<<8 | uint64(c1+1) // byte-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    	{"", ""},
    	{"a", "A"},
    	{" aaa aaa aaa ", " Aaa Aaa Aaa "},
    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    	{"ÿøû", "Ÿøû"},
    	{"with_underscore", "With_underscore"},
    	{"unicode \xe2\x80\xa8 line separator", "Unicode \xe2\x80\xa8 Line Separator"},
    }
    
    func TestTitle(t *testing.T) {
    	for _, tt := range TitleTests {
    		if s := string(Title([]byte(tt.in))); s != tt.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

             <artifact name="jcifs-1.3.17.jar">
                <pgp value="C3EB67E869C31CC00755038F0A07E0E55E45F65B"/>
             </artifact>
          </component>
          <component group="jline" name="jline" version="2.14.6">
             <artifact name="jline-2.14.6.jar">
                <pgp value="EA23DB1360D9029481E7F2EFECDFEA3CB4493B94"/>
             </artifact>
          </component>
          <component group="joda-time" name="joda-time" version="1.6">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. configure.py

      except OSError as e:
        if e.errno == errno.EEXIST:
          os.remove(link_name)
          os.symlink(target, link_name)
        else:
          raise e
    
    
    def write_to_bazelrc(line):
      with open(_TF_BAZELRC, 'a') as f:
        f.write(line + '\n')
    
    
    def write_action_env_to_bazelrc(var_name, var):
      write_to_bazelrc('build --action_env {}="{}"'.format(var_name, str(var)))
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	var save [][]byte
    	var skipLines int
    	for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    		// golang.org/issue/26073 - Apple Xcode bug
    		if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    			continue
    		}
    
    		if skipLines > 0 {
    			skipLines--
    			continue
    		}
    
    		// Remove TOC overflow warning on AIX.
    		if bytes.Contains(line, []byte("ld: 0711-783")) {
    			skipLines = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top