Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for TABS (0.04 sec)

  1. src/cmd/gofmt/testdata/tabs.input

    Daniel Martí <******@****.***> 1652048963 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 449 bytes
    - Viewed (0)
  2. src/cmd/gofmt/testdata/tabs.golden

    Daniel Martí <******@****.***> 1652048963 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 480 bytes
    - Viewed (0)
  3. subprojects/core/src/main/resources/org/gradle/reporting/report.js

        }
    
        function initTabs() {
            var container = document.getElementById("tabs");
    
            tabs.tabs = findTabs(container);
            tabs.titles = findTitles(tabs.tabs);
            tabs.headers = findHeaders(container);
            tabs.select = select;
            tabs.deselectAll = deselectAll;
            tabs.select(0);
    
            return true;
        }
    
        function getCheckBox() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/reporting/TabsRendererTest.groovy

            def html = html(writer.toString());
            then:
            html.select("div#tabs > ul > li > a").find { it.text() == "tab 1" }
            html.select("div#tabs > ul > li > a").find { it.text() == "tab 2" }
    
            html.select("div#tabs > div#tab0 > h2").find { it.text() == "tab 1" }
            html.select("div#tabs > div#tab1 > h2").find { it.text() == "tab 2" }
        }
    
        Document html(String renderedString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 08 04:29:32 UTC 2014
    - 1.9K bytes
    - Viewed (0)
  5. misc/chrome/gophertool/background.js

    chrome.omnibox.onInputEntered.addListener(function(t) {
      var url = urlForInput(t);
      if (url) {
        chrome.tabs.query({ "active": true, "currentWindow": true }, function(tab) {
          if (!tab) return;
          chrome.tabs.update(tab.id, { "url": url, "selected": true });
        });
      }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 18:14:37 UTC 2019
    - 286 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/reporting/TabsRenderer.java

    public class TabsRenderer<T> extends ReportRenderer<T, SimpleHtmlWriter> {
        private final List<TabDefinition> tabs = new ArrayList<TabDefinition>();
    
        public void add(String title, ReportRenderer<T, SimpleHtmlWriter> contentRenderer) {
            tabs.add(new TabDefinition(title, contentRenderer));
        }
    
        public void clear() {
            tabs.clear();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 2.6K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    		if (test & (TEST_PASS|TEST_SUMMARY))
    			return skip;
    		test &= ~TEST_DELIMIT;
    		printf("%s%s", spec, TABS(*tabs++));
    		if ((test & (TEST_BASELINE|TEST_SAME)) == (TEST_BASELINE|TEST_SAME))
    			printf("SAME");
    		else
    			quote(re, -1, test);
    		printf("%s", TABS(*tabs++));
    		quote(s, -1, test);
    		printf("%s", TABS(*tabs++));
    		if (!(test & (TEST_ACTUAL|TEST_BASELINE)) || !accept && !match)
    			printf("%s", ans);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_book.yaml

    upper_tabs:
    # Tabs left of dropdown menu
    - include: /_upper_tabs_left.yaml
    - include: /api_docs/_upper_tabs_api.yaml
    # Dropdown menu
    - name: Resources
      path: /resources
      is_default: true
      menu:
      - include: /resources/_menu_toc.yaml
      lower_tabs:
        # Subsite tabs
        other:
        - name: Guide
          contents:
          - title: Overview
            path: /mlir/overview
          - heading: Dialects
          - title: Overview
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 22 15:00:03 UTC 2022
    - 674 bytes
    - Viewed (0)
  9. src/text/tabwriter/tabwriter.go

    		n -= len(src)
    	}
    	b.write0(src[0:n])
    }
    
    var (
    	newline = []byte{'\n'}
    	tabs    = []byte("\t\t\t\t\t\t\t\t")
    )
    
    func (b *Writer) writePadding(textw, cellw int, useTabs bool) {
    	if b.padbytes[0] == '\t' || useTabs {
    		// padding is done with tabs
    		if b.tabwidth == 0 {
    			return // tabs have no width - can't do any padding
    		}
    		// make cellw the smallest multiple of b.tabwidth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    	} else {
    		p.printf("\n")
    	}
    	for i := 0; i < p.margin; i++ {
    		p.printf("\t")
    	}
    }
    
    // trim removes trailing spaces and tabs from the current line.
    func (p *printer) trim() {
    	// Remove trailing spaces and tabs from line we're about to end.
    	b := p.Bytes()
    	n := len(b)
    	for n > 0 && (b[n-1] == '\t' || b[n-1] == ' ') {
    		n--
    	}
    	p.Truncate(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top