Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 352 for Newlines (0.41 sec)

  1. src/fmt/scan_test.go

    		{"space vs newline 1000", "1 \n2", "%d\n%d", 2, true},
    		{"space vs newline 1001", "1 \n2", "%d\n %d", 2, true},
    		{"space vs newline 1010", "1 \n2", "%d \n%d", 2, true},
    		{"space vs newline 1011", "1 \n2", "%d \n %d", 2, true},
    		{"space vs newline 1100", "1 \n 2", "%d\n%d", 2, true},
    		{"space vs newline 1101", "1 \n 2", "%d\n %d", 2, true},
    		{"space vs newline 1110", "1 \n 2", "%d \n%d", 2, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    // Common AST nodes.
    
    // Print as many newlines as necessary (but at least min newlines) to get to
    // the current line. ws is printed before the first line break. If newSection
    // is set, the first line break is printed as formfeed. Returns 0 if no line
    // breaks were printed, returns 1 if there was exactly one newline printed,
    // and returns a value > 1 if there was a formfeed or more than one newline
    // printed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. cmd/streaming-signature-v4.go

    			}
    		}
    		if string(tmp[:]) != "\n\r\n" {
    			if cr.debug {
    				fmt.Printf("signature, want %q, got %q", "\n\r\n", string(tmp[:]))
    			}
    			return errMalformedEncoding
    		}
    		// No need to write final newlines to buffer.
    		break
    	}
    
    	// Verify signature.
    	sig := signatureBuffer.Bytes()
    	if !bytes.HasPrefix(sig, []byte("x-amz-trailer-signature:")) {
    		if cr.debug {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/go/printer/testdata/declarations.golden

    import (
    	"io"
    	"io"
    	"io"
    )
    
    import (
    	"io"
    	aLongRename "io"
    
    	b "io"
    )
    
    import (
    	"unrenamed"
    	renamed "renameMe"
    	. "io"
    	_ "io"
    	"io"
    	. "os"
    )
    
    // no newlines between consecutive single imports, but
    // respect extra line breaks in the source (at most one empty line)
    import _ "io"
    import _ "io"
    import _ "io"
    
    import _ "os"
    import _ "os"
    import _ "os"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  5. src/html/template/transition.go

    		// are supported by the 4 major browsers.
    		// This defines line comments as
    		//     LINECOMMENT ::= "//" [^\n\f\d]*
    		// since https://www.w3.org/TR/css3-syntax/#SUBTOK-nl defines
    		// newlines:
    		//     nl ::= #xA | #xD #xA | #xD | #xC
    	default:
    		panic(c.state.String())
    	}
    
    	i := bytes.IndexAny(s, lineTerminators)
    	if i == -1 {
    		return c, len(s)
    	}
    	c.state = endState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    	mib = []_C_int{CTL_KERN, KERN_VERSION}
    	n = unsafe.Sizeof(uname.Version)
    	if err := sysctl(mib, &uname.Version[0], &n, nil, 0); err != nil && !errors.Is(err, ENOMEM) {
    		return err
    	}
    
    	// The version might have newlines or tabs in it, convert them to
    	// spaces.
    	for i, b := range uname.Version {
    		if b == '\n' || b == '\t' {
    			if i == len(uname.Version)-1 {
    				uname.Version[i] = 0
    			} else {
    				uname.Version[i] = ' '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    //
    // A signed note consists of a text ending in newline (U+000A),
    // followed by a blank line (only a newline),
    // followed by one or more signature lines of this form:
    // em dash (U+2014), space (U+0020),
    // server name, space, base64-encoded signature, newline.
    //
    // Signed notes must be valid UTF-8 and must not contain any
    // ASCII control characters (those below U+0020) other than newline.
    //
    // A signature is a base64 encoding of 4+n bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     */
     
    CU_EXPORT void CU_print_run_results(FILE *file);
    /**<
     *  Prints a summary of the current run results to file.
     *  The run summary is the same as returned by CU_get_run_results_string().
     *  Note that no newlines are printed before or after the report, so any
     *  positioning must be performed before/after calling this function.  The
     *  report itself extends over several lines broken by '\n' characters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    space, horizontal tab, carriage return, and newline.
    
    Actions
    
    Here is the list of actions. "Arguments" and "pipelines" are evaluations of
    data, defined in detail in the corresponding sections that follow.
    
    */
    //	{{/* a comment */}}
    //	{{- /* a comment with white space trimmed from preceding and following text */ -}}
    //		A comment; discarded. May contain newlines.
    //		Comments do not nest and must start and end at the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	pos    Position
    	endPos Position
    	text   string
    }
    
    type tokenKind int
    
    const (
    	_EOF tokenKind = -(iota + 1)
    	_EOLCOMMENT
    	_IDENT
    	_STRING
    	_COMMENT
    
    	// newlines and punctuation tokens are allowed as ASCII codes.
    )
    
    func (k tokenKind) isComment() bool {
    	return k == _COMMENT || k == _EOLCOMMENT
    }
    
    // isEOL returns whether a token terminates a line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top