Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,287 for 27018 (0.04 sec)

  1. src/cmd/vet/testdata/testingpkg/tests_test.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 testdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 21:34:18 UTC 2021
    - 275 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue23555a/a.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 issue23555
    
    // #include <stdlib.h>
    import "C"
    
    func X() {
    	C.free(C.malloc(10))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 250 bytes
    - Viewed (0)
  3. src/internal/fmtsort/export_test.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 fmtsort
    
    import "reflect"
    
    func Compare(a, b reflect.Value) int {
    	return compare(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 21:12:24 UTC 2018
    - 258 bytes
    - Viewed (0)
  4. test/fixedbugs/issue23311.dir/main.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" // for linkname
    
    //go:linkname f runtime.GC
    func f()
    
    func main() {
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 20:00:59 UTC 2018
    - 267 bytes
    - Viewed (0)
  5. src/internal/goarch/goarch_wasm.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 goarch
    
    const (
    	_ArchFamily          = WASM
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 1
    	_MinFrameSize        = 0
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 329 bytes
    - Viewed (0)
  6. test/fixedbugs/issue26341.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"
    
    func f() {
    	for k := range (a.M{}) {
    		k.F()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 00:13:37 UTC 2018
    - 235 bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/testdata/issue10978/main.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
    
    func undefined()
    
    func defined1() int {
    	// To check multiple errors for a single symbol,
    	// reference undefined more than once.
    	undefined()
    	undefined()
    	return 0
    }
    
    func defined2() {
    	undefined()
    	undefined()
    }
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 05 16:49:07 UTC 2018
    - 478 bytes
    - Viewed (0)
  8. src/cmd/vet/testdata/unmarshal/unmarshal.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.
    
    // This file contains tests for the unmarshal checker.
    
    package unmarshal
    
    import "encoding/json"
    
    func _() {
    	type t struct {
    		a int
    	}
    	var v t
    
    	json.Unmarshal([]byte{}, v) // ERROR "call of Unmarshal passes non-pointer as second argument"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 406 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/getrandom_freebsd.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
    
    // FreeBSD getrandom system call number.
    const getrandomTrap uintptr = 563
    
    const (
    	// GRND_NONBLOCK means return EAGAIN rather than blocking.
    	GRND_NONBLOCK GetRandomFlag = 0x0001
    
    	// GRND_RANDOM is only set for portability purpose, no-op on FreeBSD.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 11 08:19:31 UTC 2021
    - 466 bytes
    - Viewed (0)
  10. test/retjmp.dir/a.s

    // 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.
    
    TEXT	·f(SB), 4, $8-0
    	CALL	·f1(SB)
    	RET	·f2(SB)
    	CALL	·unreachable(SB)
    
    TEXT	·leaf(SB), 4, $0-0
    	RET	·f3(SB)
    	JMP	·unreachable(SB)
    
    TEXT	·leaf2(SB), 4, $32-0 // nonzero frame size
    	RET	·f4(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 22:42:08 UTC 2021
    - 385 bytes
    - Viewed (0)
Back to top