Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for here (1.85 sec)

  1. src/cmd/go/testdata/script/list_swigcxx.txt

    [!exec:swig] skip
    [!exec:g++] skip
    [!cgo] skip
    
    # CompiledGoFiles should contain 4 files:
    #  a.go
    #  _cgo_import.go [gc only]
    #  _cgo_gotypes.go
    #  a.cgo1.go
    #
    # These names we see here, other than a.go, will be from the build cache,
    # so we just count them.
    
    go list -f '{{.CompiledGoFiles}}' -compiled=true example/swig
    
    stdout a\.go
    [compiler:gc] stdout -count=3 $GOCACHE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 04:04:13 UTC 2024
    - 581 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    			}
    		})
    	}
    }
    
    // libFuzzerSupported is a copy of the function internal/platform.FuzzInstrumented,
    // because the internal package can't be used here.
    func libFuzzerSupported(goos, goarch string) bool {
    	switch goarch {
    	case "amd64", "arm64":
    		// TODO(#14565): support more architectures.
    		switch goos {
    		case "darwin", "freebsd", "linux", "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/type.go

    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "go/constant"
    
    // A Type represents a type of Go.
    // All types implement the Type interface.
    // (This type originally lived in types2. We moved it here
    // so we could depend on it from other packages without
    // introducing an import cycle.)
    type Type interface {
    	// Underlying returns the underlying type of a type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/asm/main.go

    	ctxt.Pkgpath = *flags.Importpath
    	switch *flags.Spectre {
    	default:
    		log.Printf("unknown setting -spectre=%s", *flags.Spectre)
    		os.Exit(2)
    	case "":
    		// nothing
    	case "index":
    		// known to compiler; ignore here so people can use
    		// the same list with -gcflags=-spectre=LIST and -asmflags=-spectrre=LIST
    	case "all", "ret":
    		ctxt.Retpoline = true
    	}
    
    	ctxt.Bso = bufio.NewWriter(os.Stdout)
    	defer ctxt.Bso.Flush()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/errors_test.go

    			if bytes.HasSuffix(line, []byte("ERROR HERE")) {
    				re := regexp.MustCompile(regexp.QuoteMeta(fmt.Sprintf("%s:%d:", file, i+1)))
    				errors = append(errors, re)
    				continue
    			}
    
    			if _, frag, ok := bytes.Cut(line, []byte("ERROR HERE: ")); ok {
    				re, err := regexp.Compile(fmt.Sprintf(":%d:.*%s", i+1, frag))
    				if err != nil {
    					t.Errorf("Invalid regexp after `ERROR HERE: `: %#q", frag)
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/a.out.go

    	C_AND0CON
    	C_ADDCON // -0x800 <= v < 0
    	C_ANDCON // 0 < v <= 0xFFF
    	C_LCON   // other 32
    	C_DCON   // other 64 (could subdivide further)
    	C_SACON  // $n(REG) where n <= int12
    	C_SECON
    	C_LACON // $n(REG) where int12 < n <= int32
    	C_LECON
    	C_DACON // $n(REG) where int32 < n
    	C_STCON // $tlsvar
    	C_SBRA
    	C_LBRA
    	C_SAUTO
    	C_LAUTO
    	C_SEXT
    	C_LEXT
    	C_ZOREG
    	C_SOREG
    	C_LOREG
    	C_GOK
    	C_ADDR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/03-gopls.yml

        validations:
          required: false
      - type: textarea
        id: logs
        attributes:
          label: "Logs"
          description: "If possible please include gopls logs. Instructions for capturing them can be found here: https://github.com/golang/tools/blob/master/gopls/doc/troubleshooting.md#capture-logs"
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/testdata/issue67517.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // typedef struct { int a; void* ptr; } S;
    // static void f(S* p) {}
    import "C"
    
    func main() {
    	C.f(&C.S{
    		a: 1+
    
    			(3 + ""), // ERROR HERE
    
    		ptr: nil,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 335 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    )
    
    -- d1/go.mod --
    module example.net/deleted
    
    go 1.17
    -- d1/deleted.go --
    package deleted
    -- d2/go.mod --
    module example.net/deleted
    
    go 1.17
    -- d2/README --
    There is no longer a Go package here.
    
    -- lazy/go.mod --
    module example.net/lazy
    
    go 1.17
    
    require example.net/pruned v0.1.0
    -- lazy/lazy.go --
    package lazy
    
    -- pruned/go.mod --
    module example.net/pruned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/conversions.go

    	}
    
    	x.typ = T
    }
    
    // TODO(gri) convertibleTo checks if T(x) is valid. It assumes that the type
    // of x is fully known, but that's not the case for say string(1<<s + 1.0):
    // Here, the type of 1<<s + 1.0 will be UntypedFloat which will lead to the
    // (correct!) refusal of the conversion. But the reported error is essentially
    // "cannot convert untyped float value to string", yet the correct error (per
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top