Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for TABS (0.05 sec)

  1. src/text/scanner/example_test.go

    da	db	dc	dd`
    
    	var (
    		col, row int
    		s        scanner.Scanner
    		tsv      [4][4]string // large enough for example above
    	)
    	s.Init(strings.NewReader(src))
    	s.Whitespace ^= 1<<'\t' | 1<<'\n' // don't skip tabs and new lines
    
    	for tok := s.Scan(); tok != scanner.EOF; tok = s.Scan() {
    		switch tok {
    		case '\n':
    			row++
    			col = 0
    		case '\t':
    			col++
    		default:
    			tsv[row][col] = s.TokenText()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 02:01:58 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  2. mkdocs.yml

        - media: "(prefers-color-scheme: dark)"
          scheme: slate
          primary: teal
          accent: blue
          toggle:
            icon: octicons/moon-24
            name: "Switch to Light Mode"
      features:
      - navigation.tabs
    
    extra_css:
      - 'assets/css/app.css'
    
    markdown_extensions:
      - smarty
      - footnotes
      - meta
      - toc:
          permalink: true
      - attr_list
      - pymdownx.betterem:
          smart_enable: all
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. docs/en/mkdocs.yml

          name: Switch to light mode
      features:
      - search.suggest
      - search.highlight
      - content.tabs.link
      - navigation.indexes
      - content.tooltips
      - navigation.path
      - content.code.annotate
      - content.code.copy
      - content.code.select
      - navigation.tabs
      icon:
        repo: fontawesome/brands/github-alt
      logo: img/icon-white.svg
      favicon: img/favicon.png
      language: en
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                            </div>
                            <la:form action="/admin/plugin/install" enctype="multipart/form-data">
                            <div class="card-body">
                                <ul class="nav nav-tabs" role="tablist">
                                    <li role="presentation" class="nav-item"><a href="#remote" aria-controls="remote" class="nav-link active"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  5. docs/debugging/xattr/main.go

    	table.SetCenterSeparator("")
    	table.SetColumnSeparator("")
    	table.SetRowSeparator("")
    	table.SetHeaderLine(false)
    	// table.EnableBorder(false)
    	table.SetTablePadding("\t") // pad with tabs
    	table.SetNoWhiteSpace(true)
    
    	if set {
    		if err := setxattr(path, name, value); err != nil {
    			log.Fatalln(fmt.Errorf("setting attribute %s failed with: %v", name, err))
    		}
    	} else {
    		if name == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/gofmt/doc.go

    // Copyright 2009 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.
    
    /*
    Gofmt formats Go programs.
    It uses tabs for indentation and blanks for alignment.
    Alignment assumes that an editor is using a fixed-width font.
    
    Without an explicit path, it processes the standard input.  Given a file,
    it operates on that file; given a directory, it operates on all .go files in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/gofmt/internal.go

    		}
    		j++
    	}
    	var res []byte
    	res = append(res, src[:i]...)
    
    	// Determine and prepend indentation of first code line.
    	// Spaces are ignored unless there are no tabs,
    	// in which case spaces count as one tab.
    	indent := 0
    	hasSpace := false
    	for _, b := range src[i:j] {
    		switch b {
    		case ' ':
    			hasSpace = true
    		case '\t':
    			indent++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  8. src/go/format/internal.go

    		}
    		j++
    	}
    	var res []byte
    	res = append(res, src[:i]...)
    
    	// Determine and prepend indentation of first code line.
    	// Spaces are ignored unless there are no tabs,
    	// in which case spaces count as one tab.
    	indent := 0
    	hasSpace := false
    	for _, b := range src[i:j] {
    		switch b {
    		case ' ':
    			hasSpace = true
    		case '\t':
    			indent++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

          writeUtf8CodePoint(codePoint)
        }
        i += Character.charCount(codePoint)
      }
    }
    
    /**
     * Returns a substring of `input` on the range `[pos..limit)` with the following
     * transformations:
     *
     *  * Tabs, newlines, form feeds and carriage returns are skipped.
     *
     *  * In queries, ' ' is encoded to '+' and '+' is encoded to "%2B".
     *
     *  * Characters in `encodeSet` are percent-encoded.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProfileReportRendererTest.groovy

    </head>
    <body>
    <div id="content">
    <h1>Profile report</h1>
    <div id="header">
    <p>Profiled build: (no tasks specified)</p>
    <p>Started on: 2010/02/05 - 12:20:00</p>
    </div>
    <div id="tabs">
    <ul class="tabLinks">
    <li>
    <a href="#tab0">Summary</a>
    </li>
    <li>
    <a href="#tab1">Configuration</a>
    </li>
    <li>
    <a href="#tab2">Dependency Resolution</a>
    </li>
    <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:41:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top