Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,334 for 2055 (0.03 sec)

  1. test/fixedbugs/issue12347.go

    // compile
    
    // Copyright 2015 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_ssa(x int, p *int) {
    	if false {
    		y := x + 5
    		for {
    			*p = y
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 263 bytes
    - Viewed (0)
  2. src/internal/goarch/goarch_mips.go

    // Copyright 2015 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          = MIPS
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 4
    	_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)
  3. src/mime/type_openbsd.go

    // Copyright 2015 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 mime
    
    func init() {
    	typeFiles = append(typeFiles, "/usr/share/misc/mime.types")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 12 15:51:21 UTC 2015
    - 251 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/testdata/issue11097a.go

    // Copyright 2015 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
    
    /*
    //enum test { foo, bar };
    */
    import "C"
    
    func main() {
    	var a = C.enum_test(1) // ERROR HERE
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 279 bytes
    - Viewed (0)
  5. src/runtime/atomic_mips64x.s

    // Copyright 2015 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 mips64 || mips64le
    
    #include "textflag.h"
    
    #define SYNC	WORD $0xf
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 300 bytes
    - Viewed (0)
  6. test/fixedbugs/issue10219.go

    // compiledir
    
    // Copyright 2015 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 10219: failure of inlinable function that uses embedded types
    // in an anonymous struct via :=.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 15 06:04:51 UTC 2015
    - 297 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opt.go

    // Copyright 2015 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 ssa
    
    // machine-independent optimization.
    func opt(f *Func) {
    	applyRewrite(f, rewriteBlockgeneric, rewriteValuegeneric, removeDeadValues)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 309 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcarchive/testdata/main_windows.c

    // Copyright 2015 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.
    
    /*
     * Dummy implementations for Windows, because Windows doesn't
     * support Unix-style signal handling.
     */
    
    int install_handler() {
    	return 0;
    }
    
    
    int check_handler() {
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 343 bytes
    - Viewed (0)
  9. src/runtime/race/testdata/issue13264_test.go

    // Copyright 2015 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 race_test
    
    // golang.org/issue/13264
    // The test is that this compiles at all.
    
    func issue13264() {
    	for ; ; []map[int]int{}[0][0] = 0 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 16 17:20:26 UTC 2015
    - 310 bytes
    - Viewed (0)
  10. test/fixedbugs/issue10284.go

    // compile
    
    // Copyright 2015 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 10284: gccgo failed to allow converting a user-defined
    // type whose underlying type is uintptr to unsafe.Pointer.
    
    package p
    
    import "unsafe"
    
    type T uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 385 bytes
    - Viewed (0)
Back to top