Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for have (0.43 sec)

  1. src/cmd/cgo/internal/testgodefs/testdata/main.go

    var _ = issue38649{X: 0}
    
    // Test that prefixes do not cause duplicate field names.
    var _ = Issue48396{Fd: 1, Bpf_fd: 2}
    
    func main() {
    	pass := true
    
    	// The Go translation of bitfields should not have any of the
    	// bitfield types. The order in which bitfields are laid out
    	// in memory is implementation defined, so we can't easily
    	// know how a bitfield should correspond to a Go type, even if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/link/testdata/pe-llvm/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a PE rsrc section is handled correctly, when the object files
    // have been created by llvm-rc or msvc's rc.exe, which means there's the
    // @feat.00 symbol as well as split .rsrc$00 and .rsrc$01 section to deal with.
    //
    // rsrc.syso is created using llvm with:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/test2json/main.go

    // (for example, by using b.Log or b.Error), that extra output is reported
    // as a sequence of events with Test set to the benchmark name, terminated
    // by a final event with Action == "bench" or "fail".
    // Benchmarks have no events with Action == "pause".
    package main
    
    import (
    	"flag"
    	"fmt"
    	"io"
    	"os"
    	"os/exec"
    	"os/signal"
    
    	"cmd/internal/telemetry"
    	"cmd/internal/test2json"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/dist/main.go

    		gohostarch = "ppc64"
    	case "plan9":
    		gohostarch = os.Getenv("objtype")
    		if gohostarch == "" {
    			fatalf("$objtype is unset")
    		}
    	case "solaris", "illumos":
    		// Solaris and illumos systems have multi-arch userlands, and
    		// "uname -m" reports the machine hardware name; e.g.,
    		// "i86pc" on both 32- and 64-bit x86 systems.  Check for the
    		// native (widest) instruction set on the running kernel:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/testdata/issue62430/main.go

    // Copyright 2023 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 62430: a program that uses plugins may appear
    // to have no references to an initialized global map variable defined
    // in some stdlib package (ex: unicode), however there
    // may be references to that map var from a plugin that
    // gets loaded.
    
    package main
    
    import (
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 804 bytes
    - Viewed (0)
  6. src/cmd/cover/testdata/main.go

    		PASS = false
    	}
    }
    
    // count returns the count and index for the counter at the specified line.
    func count(line uint32) (uint32, int) {
    	// Linear search is fine. Choose perfect fit over approximate.
    	// We can have a closing brace for a range on the same line as a condition for an "else if"
    	// and we don't want that brace to steal the count for the condition on the "if".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 16:40:40 UTC 2016
    - 3K bytes
    - Viewed (0)
Back to top