Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,287 for 27018 (0.25 sec)

  1. test/fixedbugs/issue28055.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.
    
    // Make sure VARDEF can be a top-level statement.
    
    package p
    
    func f() {
    	var s string
    	var as []string
    	switch false && (s+"a"+as[0]+s+as[0]+s == "") {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 16:28:04 UTC 2018
    - 330 bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_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 cpu
    
    const CacheLinePadSize = 64
    
    func doinit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 12:10:43 UTC 2020
    - 220 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue27340.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
    
    // Failed to resolve typedefs consistently.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    import "cmd/cgo/internal/test/issue27340"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 377 bytes
    - Viewed (0)
  4. src/crypto/x509/root_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.
    
    //go:build wasm
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{}
    
    // Possible directories with certificate files; all will be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 373 bytes
    - Viewed (0)
  5. src/internal/poll/fd_writev_libc.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 aix || darwin || (openbsd && !mips64) || solaris
    
    package poll
    
    import (
    	"syscall"
    	_ "unsafe" // for go:linkname
    )
    
    //go:linkname writev syscall.writev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:48:38 UTC 2022
    - 386 bytes
    - Viewed (0)
  6. src/internal/syscall/unix/at_sysnum_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
    
    import "syscall"
    
    const (
    	AT_EACCESS          = 0x100
    	AT_FDCWD            = -0x64
    	AT_REMOVEDIR        = 0x800
    	AT_SYMLINK_NOFOLLOW = 0x200
    
    	UTIME_OMIT = -0x2
    
    	unlinkatTrap       uintptr = syscall.SYS_UNLINKAT
    	openatTrap         uintptr = syscall.SYS_OPENAT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 03:38:07 UTC 2023
    - 497 bytes
    - Viewed (0)
  7. test/fixedbugs/issue28616.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.
    
    // Make sure we don't dead code eliminate a label.
    
    package p
    
    var i int
    
    func f() {
    
    	if true {
    
    		if i == 1 {
    			goto label
    		}
    
    		return
    	}
    
    label:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 18:50:16 UTC 2018
    - 325 bytes
    - Viewed (0)
  8. test/fixedbugs/issue29389.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.
    
    // Make sure we can correctly compile method expressions
    // where the method is implicitly declared.
    
    package main
    
    import "io"
    
    func main() {
    	err := io.EOF
    	_ = err.Error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 22 01:08:39 UTC 2018
    - 347 bytes
    - Viewed (0)
  9. test/fixedbugs/issue24801.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 "./a"
    
    func main() {
    	a.X = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 23:34:12 UTC 2018
    - 213 bytes
    - Viewed (0)
  10. src/syscall/js/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.
    
    //go:build js && wasm
    
    package js
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 22:38:00 UTC 2021
    - 211 bytes
    - Viewed (0)
Back to top