Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for bline (0.04 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    	// Split the output at the beginning of each line that doesn't begin with a tab.
    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    		if strings.HasSuffix(line, "\r") { // remove '\r', output by compiler on windows
    			line = line[:len(line)-1]
    		}
    		if strings.HasPrefix(line, "\t") {
    			res[len(res)-1] += "\n" + line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Script 'script.gradle': line 10: registration of listener on 'Gradle.buildFinished' is unsupported")
                withProblem("Script 'script.gradle': line 13: registration of listener on 'Gradle.buildFinished' is unsupported")
                withProblem("Script 'script.gradle': line 4: registration of listener on 'Gradle.buildFinished' is unsupported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	ended := false       // found non-blank, non-// line, so stopped accepting //go:build lines
    	inSlashStar := false // in /* */ comment
    
    Lines:
    	for len(p) > 0 {
    		line := p
    		if i := bytes.IndexByte(line, '\n'); i >= 0 {
    			line, p = line[:i], p[i+1:]
    		} else {
    			p = p[len(p):]
    		}
    		line = bytes.TrimSpace(line)
    		if len(line) == 0 && !ended { // Blank line
    			// Remember position of most recent blank line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    	clear: both;
    	margin: 1.25em 0 1.1875em;
    	height: 0;
    }
    
    /* Helpful Typography Defaults */
    em,
    i {
    	font-style: italic;
    	line-height: inherit;
    }
    
    strong,
    b {
    	font-weight: bold;
    	line-height: inherit;
    }
    
    small {
    	font-size: 60%;
    	line-height: inherit;
    }
    
    code {
    	font-family: "Droid Sans Mono", "DejaVu Sans Mono", monospace;
    	font-weight: normal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/minio-dashboard.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: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	b.WriteString(f.Preamble)
    	stdout := p.gccDefines(b.Bytes())
    
    	for _, line := range strings.Split(stdout, "\n") {
    		if len(line) < 9 || line[0:7] != "#define" {
    			continue
    		}
    
    		line = strings.TrimSpace(line[8:])
    
    		var key, val string
    		spaceIndex := strings.Index(line, " ")
    		tabIndex := strings.Index(line, "\t")
    
    		if spaceIndex == -1 && tabIndex == -1 {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	}
    
    	// For reproducibility, if we are writing a new go line,
    	// and we're not explicitly modifying the toolchain line with 'go get toolchain@something',
    	// and the go version is one that supports switching toolchains,
    	// and the toolchain running right now is newer than the current toolchain line,
    	// then update the toolchain line to record the newer toolchain.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	pwd := a.Package.Dir
    	for _, line := range bytes.Split(testlog, []byte("\n")) {
    		if len(line) == 0 {
    			continue
    		}
    		s := string(line)
    		op, name, found := strings.Cut(s, " ")
    		if !found {
    			if cache.DebugTest {
    				fmt.Fprintf(os.Stderr, "testcache: %s: input list malformed (%q)\n", a.Package.ImportPath, line)
    			}
    			return cache.ActionID{}, errBadTestInputs
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/testing/testing.go

    		}
    	} else {
    		file = "???"
    	}
    	if line == 0 {
    		line = 1
    	}
    	buf := new(strings.Builder)
    	// Every line is indented at least 4 spaces.
    	buf.WriteString("    ")
    	fmt.Fprintf(buf, "%s:%d: ", file, line)
    	lines := strings.Split(s, "\n")
    	if l := len(lines); l > 1 && lines[l-1] == "" {
    		lines = lines[:l-1]
    	}
    	for i, line := range lines {
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	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
    		}
    		if !bytes.HasPrefix(line, prefix) {
    			panic(fmt.Errorf("line %d doesn't start with expected number (%d) of tabs: %v", i, len(prefix), string(line)))
    		}
    		lines[i] = line[len(prefix):]
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top