Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for TABS (0.06 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. 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)
  8. 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)
  9. doc/next/6-stdlib/99-minor/net/http/64910.md

    The patterns used by [ServeMux] now allow one or more spaces or tabs after the method name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:44:13 UTC 2024
    - 139 bytes
    - Viewed (0)
  10. misc/chrome/gophertool/manifest.json

      },
      "browser_action": {
        "default_icon": "gopher.png",
        "default_popup": "popup.html"
      },
      "omnibox": { "keyword": "golang" },
      "icons": {
        "16": "gopher.png"
      },
      "permissions": [
         "tabs"
      ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 05 20:52:13 UTC 2012
    - 378 bytes
    - Viewed (0)
Back to top