Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,845 for 27018 (0.27 sec)

  1. src/internal/syscall/unix/at_sysnum_fstatat64_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 arm || mips || mipsle || 386
    
    package unix
    
    import "syscall"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 283 bytes
    - Viewed (0)
  2. test/fixedbugs/issue23780.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
    
    func f() {
    	_ = []byte{1 << 30: 1}
    }
    
    func g() {
    	sink = []byte{1 << 30: 1}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 22:50:48 UTC 2018
    - 278 bytes
    - Viewed (0)
  3. test/fixedbugs/issue24693.dir/c.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 main
    
    import "./b"
    
    func main() {
    	b.F1(b.T{})
    	b.F2(b.T{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 230 bytes
    - Viewed (0)
  4. test/fixedbugs/issue24120.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
    
    var F func(int)
    
    func G() {
    	if F(func() int { return 1 }()); false {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:27:32 UTC 2018
    - 258 bytes
    - Viewed (0)
  5. test/fixedbugs/issue24760.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
    
    import "unsafe"
    
    var _ = string([]byte(nil))[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 22:49:57 UTC 2018
    - 282 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_quote_v2.0.0.txt

    -- go.mod --
    module "rsc.io/quote"
    
    require "rsc.io/sampler" v1.3.0
    -- quote.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 quote collects pithy sayings.
    package quote // import "rsc.io/quote"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue26430/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 a
    
    // typedef struct S ST;
    // struct S { int f; };
    import "C"
    
    func F2(p *C.ST) {
    	p.f = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 261 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue23203a.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 main
    
    import "unsafe"
    
    type T struct{}
    
    func (T) m1()                         {}
    func (T) m2([unsafe.Sizeof(T.m1)]int) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 306 bytes
    - Viewed (0)
  9. test/fixedbugs/issue24937.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.
    
    package main
    
    func main() {
    	x := []byte{'a'}
    	switch string(x) {
    	case func() string { x[0] = 'b'; return "b" }():
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 21 00:50:50 UTC 2018
    - 305 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/test26213.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 cgo
    
    package cgotest
    
    import (
    	"testing"
    
    	"cmd/cgo/internal/test/issue26213"
    )
    
    func test26213(t *testing.T) {
    	issue26213.Test26213(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 311 bytes
    - Viewed (0)
Back to top