Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for chars (0.08 sec)

  1. src/go/types/expr.go

    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    			}
    		}
    		x.setConst(e.Kind, e.Value)
    		if x.mode == invalid {
    			// The parser already establishes syntactic correctness.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    func (p *parser) consumeComment() (comment *ast.Comment, endline int) {
    	// /*-style comments may end on a different line than where they start.
    	// Scan the comment for '\n' chars and adjust endline accordingly.
    	endline = p.file.Line(p.pos)
    	if p.lit[1] == '*' {
    		// don't use range here - no need to decode Unicode code points
    		for i := 0; i < len(p.lit); i++ {
    			if p.lit[i] == '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    	desc: "end element with no name",
    	toks: []Token{
    		EndElement{Name{"space", ""}},
    	},
    	err: "xml: end tag with no name",
    }, {
    	desc: "char data",
    	toks: []Token{
    		CharData("foo"),
    	},
    	want: `foo`,
    }, {
    	desc: "char data with escaped chars",
    	toks: []Token{
    		CharData(" \t\n"),
    	},
    	want: " &#x9;\n",
    }, {
    	desc: "comment",
    	toks: []Token{
    		Comment("foo"),
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/bytes/bytes_test.go

    		}
    	})
    	if allocs != 0 {
    		t.Errorf("expected no allocations, got %f", allocs)
    	}
    }
    
    func runIndexAnyTests(t *testing.T, f func(s []byte, chars string) int, funcName string, testCases []BinOpTest) {
    	for _, test := range testCases {
    		a := []byte(test.a)
    		actual := f(a, test.b)
    		if actual != test.i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    			}
    		}
    		x.setConst(e.Kind, e.Value)
    		if x.mode == invalid {
    			// The parser already establishes syntactic correctness.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    func (p *parser) consumeComment() (comment *ast.Comment, endline int) {
    	// /*-style comments may end on a different line than where they start.
    	// Scan the comment for '\n' chars and adjust endline accordingly.
    	endline = p.file.Line(p.pos)
    	if p.lit[1] == '*' {
    		// don't use range here - no need to decode Unicode code points
    		for i := 0; i < len(p.lit); i++ {
    			if p.lit[i] == '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #if defined(__powerpc__)
    struct sgttyb {
            char    sg_ispeed;
            char    sg_ospeed;
            char    sg_erase;
            char    sg_kill;
            short   sg_flags;
    };
    
    struct tchars {
            char    t_intrc;
            char    t_quitc;
            char    t_startc;
            char    t_stopc;
            char    t_eofc;
            char    t_brkc;
    };
    
    struct ltchars {
            char    t_suspc;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/mmu.go

            container.empty();
            container.css('opacity', '');
            chart = new google.visualization.LineChart(container[0]);
            chart = new google.visualization.LineChart(document.getElementById('mmu_chart'));
            chart.draw(data, options);
    
            google.visualization.events.addListener(chart, 'select', selectHandler);
            $('#details').empty();
          }
    
          function selectHandler() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // Setup to allow measuring text width.
      const textSizer = document.createElement('canvas');
      textSizer.id = 'textsizer';
      const textContext = textSizer.getContext('2d');
    
      // Get DOM elements.
      const chart = find('stack-chart');
      const search = find('search');
      const actions = find('action-menu');
      const actionTitle = find('action-title');
      const detailBox = find('current-details');
    
      window.addEventListener('resize', render);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_REVOKE                   = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }
    	SYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }
    	SYS_UMASK                    = 60  // { int umask(int newmask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top