Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for tabs (0.2 sec)

  1. misc/chrome/gophertool/popup.js

    function openURL(url) {
      chrome.tabs.create({ "url": url })
    }
    
    function addLinks() {
      var links = document.getElementsByTagName("a");
      for (var i = 0; i < links.length; i++) {
        var url = links[i].getAttribute("url");
        if (url)
          links[i].addEventListener("click", function () {
            openURL(this.getAttribute("url"));
          });
      }
    }
    
    window.addEventListener("load", function () {
      addLinks();
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Oct 21 17:05:21 GMT 2012
    - 1020 bytes
    - Viewed (0)
  2. 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 });
        });
      }
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 18 18:14:37 GMT 2019
    - 286 bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	<li>
    	<code>x</code> is <a href="#Assignability">assignable</a>
    	to <code>T</code>.
    	</li>
    	<li>
    	ignoring struct tags (see below),
    	<code>x</code>'s type and <code>T</code> have <a href="#Type_identity">identical</a>
    	<a href="#Types">underlying types</a>.
    	</li>
    	<li>
    	ignoring struct tags (see below),
    	<code>x</code>'s type and <code>T</code> are pointer types
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/01-pkgsite.yml

          required: false
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. Starting with a Private/Incognito tab/window may help rule out problematic browser extensions."
        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
        validations:
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/s390x.s

    	FSUB	F3, F12                // b31b00c3
    	FMULS	F4, F11                // b31700b4
    	FMUL	F5, F10                // b31c00a5
    	FDIVS	F6, F9                 // b30d0096
    	FDIV	F7, F8                 // b31d0087
    	FABS	F1, F2                 // b3100021
    	FSQRTS	F3, F4                 // b3140043
    	FSQRT	F5, F15                // b31500f5
    	FIEBR	$0, F0, F1             // b3570010
    	FIDBR	$7, F2, F3             // b35f7032
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  6. api/go1.5.txt

    pkg math/big, func Jacobi(*Int, *Int) int
    pkg math/big, func NewFloat(float64) *Float
    pkg math/big, func ParseFloat(string, int, uint, RoundingMode) (*Float, int, error)
    pkg math/big, method (*Float) Abs(*Float) *Float
    pkg math/big, method (*Float) Acc() Accuracy
    pkg math/big, method (*Float) Add(*Float, *Float) *Float
    pkg math/big, method (*Float) Append([]uint8, uint8, int) []uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  7. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const BIOCVERSION ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_A = 16
    pkg syscall (netbsd-arm64-cgo), const BPF_ABS = 32
    pkg syscall (netbsd-arm64-cgo), const BPF_ABS ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_ADD = 0
    pkg syscall (netbsd-arm64-cgo), const BPF_ADD ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_A ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	EXTRACTPS $1, X2, R11                   // 66410f3a17d301
    	EXTRACTPS $0, X11, R11                  // 66450f3a17db00
    	F2XM1                                   // d9f0
    	FABS                                    // d9e1
    	FADDD F2, F0                            // d8c2
    	FADDD F3, F0                            // d8c3
    	FADDD F0, F2                            // dcc2
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  9. src/bytes/reader.go

    	r.prevRune = -1
    	var abs int64
    	switch whence {
    	case io.SeekStart:
    		abs = offset
    	case io.SeekCurrent:
    		abs = r.i + offset
    	case io.SeekEnd:
    		abs = int64(len(r.s)) + offset
    	default:
    		return 0, errors.New("bytes.Reader.Seek: invalid whence")
    	}
    	if abs < 0 {
    		return 0, errors.New("bytes.Reader.Seek: negative position")
    	}
    	r.i = abs
    	return abs, nil
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  10. doc/go_spec.html

    	to <code>T</code>.
    	</li>
    	<li>
    	ignoring struct tags (see below),
    	<code>x</code>'s type and <code>T</code> are not
    	<a href="#Type_parameter_declarations">type parameters</a> but have
    	<a href="#Type_identity">identical</a> <a href="#Underlying_types">underlying types</a>.
    	</li>
    	<li>
    	ignoring struct tags (see below),
    	<code>x</code>'s type and <code>T</code> are pointer types
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top