Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for TABS (0.04 sec)

  1. pyproject.toml

        "UP",  # pyupgrade
    ]
    ignore = [
        "E501",  # line too long, handled by black
        "B008",  # do not perform function calls in argument defaults
        "C901",  # too complex
        "W191",  # indentation contains tabs
    ]
    
    [tool.ruff.lint.per-file-ignores]
    "__init__.py" = ["F401"]
    "docs_src/dependencies/tutorial007.py" = ["F821"]
    "docs_src/dependencies/tutorial008.py" = ["F821"]
    "docs_src/dependencies/tutorial009.py" = ["F821"]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileReportRenderer.java

                        CompositeOperation<Operation> profiledProjectConfiguration = model.getProjectConfiguration();
    
                        htmlWriter.startElement("div").attribute("id", "tabs")
                            .startElement("ul").attribute("class", "tabLinks")
                                .startElement("li").startElement("a").attribute("href", "#tab0").characters("Summary").endElement().endElement()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. src/mime/encodedword.go

    // one byte of non-whitespace.
    func hasNonWhitespace(s string) bool {
    	for _, b := range s {
    		switch b {
    		// Encoded-words can only be separated by linear white spaces which does
    		// not include vertical tabs (\v).
    		case ' ', '\t', '\n', '\r':
    		default:
    			return true
    		}
    	}
    	return false
    }
    
    // qDecode decodes a Q encoded string.
    func qDecode(s string) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            then:
            looksLike("<root>\n$actual<child>\n$actual$actual<grandchild/>\n$actual</child>\n</root>\n", result)
    
            where:
            expected | actual
            "    "   | "    "
            "\t"     | "  " // tabs not supported, two spaces used instead
        }
    
        def "empty text nodes are removed when writing out DOM element"() {
            transformer.addAction { XmlProvider provider ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. src/go/printer/printer_test.go

    		t.Run(fmt.Sprint(indent), func(t *testing.T) {
    			t.Parallel()
    			var buf bytes.Buffer
    			(&Config{Tabwidth: tabwidth, Indent: indent}).Fprint(&buf, fset, file)
    			// all code must be indented by at least 'indent' tabs
    			lines := bytes.Split(buf.Bytes(), []byte{'\n'})
    			for i, line := range lines {
    				if len(line) == 0 {
    					continue // empty lines don't have indentation
    				}
    				n := 0
    				for j, b := range line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/go/doc/comment/parse.go

    func commonPrefix(a, b string) string {
    	i := 0
    	for i < len(a) && i < len(b) && a[i] == b[i] {
    		i++
    	}
    	return a[0:i]
    }
    
    // leadingSpace returns the longest prefix of s consisting of spaces and tabs.
    func leadingSpace(s string) string {
    	i := 0
    	for i < len(s) && (s[i] == ' ' || s[i] == '\t') {
    		i++
    	}
    	return s[:i]
    }
    
    // isOldHeading reports whether line is an old-style section heading.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  7. src/encoding/xml/read_test.go

    didn&amp;#39;t know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    In the process of fixing this, I cleaned up the arguments
    to Fold and ExpandTabs and renamed them Break and
    _ExpandTabs so that I could be sure that I found all the
    call sites.  I also wanted to verify that ExpandTabs was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/README.md

    * `[.multi-language-text.lang-groovy]`: Most times the gradle command is identical between Groovy and Kotlin samples, but in this case we need to use `[.multi-language-text.lang-*]` that our CSS will collapse and switch for the DSL of choice....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.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 {
    		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: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. src/go/doc/doc.go

    func (p *Package) Markdown(text string) []byte {
    	return p.Printer().Markdown(p.Parser().Parse(text))
    }
    
    // Text returns formatted text for the doc comment text,
    // wrapped to 80 Unicode code points and using tabs for
    // code block indentation.
    //
    // To customize details of the formatting, use [Package.Printer]
    // to obtain a [comment.Printer], and configure it
    // before calling its Text method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top