Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for 1979 (0.04 sec)

  1. test/fixedbugs/bug358.go

    // errorcheck -d=panic
    
    // Copyright 2011 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.
    
    // issue 1979
    // used to get internal compiler error too
    
    package main
    
    import (
    	// avoid imported and not used errors
    	// "io/ioutil"
    	"net/http"
    	// "os"
    )
    
    func makeHandler(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 04 06:36:33 UTC 2021
    - 601 bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPKCS1v15

    00000280  39 7e 17 d8 74 ae 05 a3  f5 3a 71 74 e8 b4 c9 a4  |9~..t....:qt....|
    00000290  1c 82 04 ca fe 5f 97 23  8a c1 f9 ce d1 5d 0e 81  |....._.#.....]..|
    000002a0  da 5f e1 b6 76 80 3c cf  9f 19 79 cf 33 d0 0a fe  |._..v.<...y.3...|
    000002b0  19 fc 2d 9a bb 24 cd d4  79 14 03 03 00 01 01 16  |..-..$..y.......|
    000002c0  03 03 00 28 00 00 00 00  00 00 00 00 28 78 b8 0b  |...(........(x..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___LOCALTIME_A                   = 0x7B1 // 1969
    	SYS___LOCALTIME_R_A                 = 0x7B2 // 1970
    	SYS___MKTIME_A                      = 0x7B3 // 1971
    	SYS___TZZNA                         = 0x7B4 // 1972
    	SYS_UNATEXIT                        = 0x7B5 // 1973
    	SYS___CEE3DMP_A                     = 0x7B6 // 1974
    	SYS___CDUMP_A                       = 0x7B7 // 1975
    	SYS___CSNAP_A                       = 0x7B8 // 1976
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. src/runtime/zcallback_windows_arm64.s

    	MOVD	$1968, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1969, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1970, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1971, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1972, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1973, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1974, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1975, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1976, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  5. src/runtime/zcallback_windows_arm.s

    	MOVW	$1968, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1969, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1970, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1971, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1972, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1973, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1974, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1975, R12
    	B	runtime·callbackasm1(SB)
    	MOVW	$1976, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_runs.txt

    go test -short -coverpkg=strings strings regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'regexp.*coverage:.*[1-9][0-9.]+%'
    
    go test -short -cover strings math regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'math.*coverage:.*[1-9][0-9.]+%'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 413 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_cgo_xtest.txt

    [short] skip
    [!cgo] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    # Test cgo coverage with an external test.
    
    go test -short -cover cgocover2
    stdout  'coverage:.*[1-9][0-9.]+%'
    ! stderr '[^0-9]0\.0%'
    
    -- go.mod --
    module cgocover2
    
    go 1.16
    -- p.go --
    package p
    
    /*
    void
    f(void)
    {
    }
    */
    import "C"
    
    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 464 bytes
    - Viewed (0)
  8. src/syscall/syscall_test.go

    	// make sure TESTENV gets set to "", not deleted
    	testSetGetenv(t, "TESTENV", "")
    }
    
    // Check that permuting child process fds doesn't interfere with
    // reporting of fork/exec status. See Issue 14979.
    func TestExecErrPermutedFds(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	attr := &os.ProcAttr{Files: []*os.File{os.Stdin, os.Stderr, os.Stdout}}
    	_, err := os.StartProcess("/", []string{"/"}, attr)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. test/method4.dir/prog.go

    	eq(I2.Sum(t1, a, 15), 25)
    	eq(I2.Sum(t2, a, 16), 26)
    
    	f4 := I2.Sum
    	eq(f4(t1, a, 17), 27)
    	eq(f4(t2, a, 18), 28)
    
    	// issue 6723
    	f5 := (interface {
    		I2
    	}).Sum
    	eq(f5(t1, a, 19), 29)
    	eq(f5(t2, a, 20), 30)
    
    	mt1 := method4a.T1(4)
    	mt2 := &method4a.T2{4}
    
    	eq(mt1.Sum(a, 30), 40)
    	eq(mt2.Sum(a, 31), 41)
    
    	eq(method4a.T1.Sum(mt1, a, 32), 42)
    	eq((*method4a.T2).Sum(mt2, a, 33), 43)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 07 12:26:48 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  10. .github/workflows/sigbuild-docker-branch.yml

      push:
        paths:
          - '.github/workflows/sigbuild-docker-branch.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
          - '!tensorflow/tools/tf_sig_build_dockerfiles/README.md'
        branches:
          - "r[1-9].[0-9]+"
    
    permissions:
      contents: read
    
    jobs:
      docker:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: ubuntu-latest
        strategy:
          matrix:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top