Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 352 for Newlines (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            }
            return groupedOutputFixture;
        }
    
        private String normalize(LogContent output) {
            List<String> result = new ArrayList<>();
            List<String> lines = output.getLines();
            int i = 0;
            while (i < lines.size()) {
                String line = lines.get(i);
                if (line.contains(DaemonStartupMessage.STARTING_DAEMON_MESSAGE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

          with(sink) {
            writeInt(totalRuleBytes)
            for (domain in sortedRules) {
              write(domain).writeByte(NEWLINE)
            }
            writeInt(totalExceptionRuleBytes)
            for (domain in sortedExceptionRules) {
              write(domain).writeByte(NEWLINE)
            }
          }
        }
      }
    
      private suspend fun writeOutputFile(importResults: ImportResults) =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/internal/diff/testdata/eof1.txt

    -- old --
    a
    b
    c
    -- new --
    a
    b
    c^D
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -1,3 +1,3 @@
     a
     b
    -c
    +c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 130 bytes
    - Viewed (0)
  4. cmd/gotemplate/gotemplate_test.go

    		numSpaces int
    		content   string
    		expected  string
    	}{
    		"empty": {
    			numSpaces: 10,
    			content:   "",
    			expected:  "",
    		},
    		"trailing-newline": {
    			numSpaces: 2,
    			content:   "hello\nworld\n",
    			expected:  "hello\n  world\n  ",
    		},
    		"no-trailing-newline": {
    			numSpaces: 1,
    			content:   "hello\nworld",
    			expected:  "hello\n world",
    		},
    		"zero-indent": {
    			numSpaces: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 22 13:43:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. hack/verify-non-mutating-validation.sh

    mutationOutput=$(find . -name validation.go -print0 | xargs -0 egrep -n ' = old' | grep -v '// +k8s:verify-mutation:reason=clone' || true)
    foundMutation=${#mutationOutput}
    # when there's no match, there is a newline
    if [ "$foundMutation" -gt "1" ]; then
      echo "${mutationOutput}"
      echo "It looks like an assignment of a value using the old object.  This is a heuristic check.  If a mutation is happening in validation please fix it."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 08 18:37:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/objfile_test.go

    	}
    }
    
    var issue41621prolog = `
    package main
    var lines = []string{
    `
    
    var issue41621epilog = `
    }
    func getLines() []string {
    	return lines
    }
    func main() {
    	println(getLines())
    }
    `
    
    func TestIssue41621LargeNumberOfRelocations(t *testing.T) {
    	if testing.Short() || (buildcfg.GOARCH != "amd64") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:12 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. test/syntax/semi6.go

    // errorcheck
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type T1	// ERROR "newline in type declaration"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 02 02:56:41 UTC 2020
    - 299 bytes
    - Viewed (0)
  8. test/syntax/semi7.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	if x { }	// GCCGO_ERROR "undefined"
    	else { }	// ERROR "unexpected semicolon or newline before .?else.?|unexpected else"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 329 bytes
    - Viewed (0)
  9. test/syntax/semi5.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 262 bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/stdin3.golden

    		//gofmt -stdin
    
    		/* note: no newline at end of file */
    		for i := 0; i < 10; i++ {
    			s += i
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 101 bytes
    - Viewed (0)
Back to top