Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for line_ (0.05 sec)

  1. src/cmd/go/alldocs.go

    //
    // The output is a sequence of stanzas, one for each package or module
    // name on the command line, separated by blank lines. Each stanza begins
    // with a comment line "# package" or "# module" giving the target
    // package or module. Subsequent lines give a path through the import
    // graph, one package per line. If the package or module is not
    // referenced from the main module, the stanza will display a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	var prefix []byte
    	for _, c := range lines[0] {
    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

                "axisCenteredZero": false,
                "axisColorMode": "text",
                "axisLabel": "",
                "axisPlacement": "auto",
                "barAlignment": 0,
                "drawStyle": "line",
                "fillOpacity": 10,
                "gradientMode": "none",
                "hideFrom": {
                  "legend": false,
                  "tooltip": false,
                  "viz": false
                },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-gc-stress.test

    	pc=4245160 func=29 file=28 line=1021
    	pc=4502184 func=30 file=31 line=103
    	pc=4804475 func=32 file=33 line=60
    Stack id=26 nframes=7
    	pc=4300939 func=36 file=35 line=1196
    	pc=4297301 func=34 file=35 line=926
    	pc=4312466 func=25 file=26 line=564
    	pc=4247187 func=27 file=28 line=1333
    	pc=4245160 func=29 file=28 line=1021
    	pc=4502184 func=30 file=31 line=103
    	pc=4804475 func=32 file=33 line=60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    				return ""
    			}
    			i++
    		}
    		line := data[i:]
    
    		// Cut line at \n, drop trailing \r if present.
    		if j := bytes.IndexByte(line, '\n'); j >= 0 {
    			line = line[:j]
    		}
    		if line[len(line)-1] == '\r' {
    			line = line[:len(line)-1]
    		}
    		line = line[len("module "):]
    
    		// If quoted, unquote.
    		path = strings.TrimSpace(string(line))
    		if path != "" && path[0] == '"' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    				// Find start of line.
    				start := bytes.LastIndex(src[:idx], []byte("\n"))
    				if start == -1 {
    					start = 0
    				}
    
    				// Find end of line.
    				end := bytes.Index(src[idx:], []byte("\n"))
    				if end == -1 {
    					end = len(src)
    				} else {
    					end += idx
    				}
    
    				// Check for first line comment in line.
    				// We don't worry about /* */ comments,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      chown -R etcd "${mount_point}/var/etcd"
      chgrp -R etcd "${mount_point}/var/etcd"
    }
    
    # append_or_replace_prefixed_line ensures:
    # 1. the specified file exists
    # 2. existing lines with the specified ${prefix} are removed
    # 3. a new line with the specified ${prefix}${suffix} is appended
    function append_or_replace_prefixed_line {
      local -r file="${1:-}"
      local -r prefix="${2:-}"
      local -r suffix="${3:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. cmd/server_test.go

    	1234567890,1234567890,1234567890,1234567890,1234567890,123"`
    	// Create 10MiB content where each line contains 1024 characters.
    	for i := 0; i < 10*1024; i++ {
    		buffer.WriteString(fmt.Sprintf("[%05d] %s\n", i, line))
    	}
    	putContent := buffer.String()
    
    	buf := bytes.NewReader([]byte(putContent))
    
    	objectName := "test-big-object"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    // if that's what an instruction can handle.
    //
    // In parallel with the scan through the ytable for the appropriate line, there
    // is a z pointer that starts out pointing at the strange magic byte list in
    // the Optab struct.  With each step past a non-matching ytable line, z
    // advances by the 4th entry in the line.  When a matching line is found, that
    // z pointer has the extra data to use in laying down the instruction bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    			t.Fatalf("Transport sent unexpected bytes: %q", got)
    		}
    	})
    
    	return test
    }
    
    // respond sends response lines from the server to the transport.
    func (test *transport100ContinueTest) respond(lines ...string) {
    	for _, line := range lines {
    		if _, err := test.conn.Write([]byte(line + "\r\n")); err != nil {
    			test.t.Fatalf("Write: %v", err)
    		}
    	}
    	if _, err := test.conn.Write([]byte("\r\n")); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top