Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,287 for 27018 (0.07 sec)

  1. test/fixedbugs/issue29304.go

    // run
    
    // Copyright 2018 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.
    
    // Verify that relocation target go.builtin.error.Error
    // is defined and the code links and runs correctly.
    
    package main
    
    import "errors"
    
    func main() {
    	err := errors.New("foo")
    	if error.Error(err) != "foo" {
    		panic("FAILED")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 17 19:48:36 UTC 2018
    - 404 bytes
    - Viewed (0)
  2. test/fixedbugs/issue25322.go

    // run
    
    // Copyright 2018 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.
    
    // Missing zero extension when converting a float32
    // to a uint64.
    
    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    func Foo(v float32) {
    	fmt.Printf("%x\n", uint64(math.Float32bits(v)))
    }
    
    func main() {
    	Foo(2.0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 378 bytes
    - Viewed (0)
  3. test/fixedbugs/issue24761.dir/b.go

    // Copyright 2018 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.
    
    package b
    
    import "./a"
    
    type T1 struct {
    	*a.T2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 23:46:30 UTC 2018
    - 211 bytes
    - Viewed (0)
  4. src/net/error_plan9.go

    // Copyright 2018 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.
    
    package net
    
    func isConnError(err error) bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 01 14:50:33 UTC 2018
    - 224 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/mac_noasm.go

    // Copyright 2018 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.
    
    //go:build (!amd64 && !ppc64le && !s390x) || !gc || purego
    
    package poly1305
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 268 bytes
    - Viewed (0)
  6. src/internal/syscall/unix/at_sysnum_darwin.go

    // Copyright 2018 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.
    
    package unix
    
    const (
    	AT_EACCESS          = 0x10
    	AT_FDCWD            = -0x2
    	AT_REMOVEDIR        = 0x80
    	AT_SYMLINK_NOFOLLOW = 0x0020
    
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 15:02:38 UTC 2024
    - 318 bytes
    - Viewed (0)
  7. test/fixedbugs/issue25741.go

    // compile
    
    // Copyright 2018 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.
    
    package main
    
    var s []int
    
    func main() {
    	i := -1
    	s[i] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 06 14:40:25 UTC 2018
    - 234 bytes
    - Viewed (0)
  8. src/runtime/os_freebsd_noauxv.go

    // Copyright 2018 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.
    
    //go:build freebsd && !arm
    
    package runtime
    
    func archauxv(tag, val uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 241 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/at_sysnum_fstatat_linux.go

    // Copyright 2018 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.
    
    //go:build arm64 || riscv64
    
    package unix
    
    import "syscall"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 269 bytes
    - Viewed (0)
  10. test/fixedbugs/issue23298.go

    // compile
    
    // Copyright 2018 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.
    
    package p
    
    type T string
    
    var (
    	t = T("T")
    	r = []rune(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 00:25:21 UTC 2018
    - 233 bytes
    - Viewed (0)
Back to top