Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 963 for compiling (0.27 sec)

  1. test/fixedbugs/bug438.go

    // compile
    
    // Copyright 2012 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.
    
    // Gccgo used to incorrectly give an error when compiling this.
    
    package p
    
    func F() (i int) {
    	for first := true; first; first = false {
    		i++
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 04 20:14:09 UTC 2012
    - 329 bytes
    - Viewed (0)
  2. test/fixedbugs/issue52871.go

    // compile
    
    // Copyright 2022 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.
    
    // gofrontend crashed compiling this code.
    
    package p
    
    type S struct {}
    
    func (s *S) test(_ string) {}
    
    var T = [1]func(*S, string) {
    	(*S).test,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 16:13:35 UTC 2022
    - 320 bytes
    - Viewed (0)
  3. test/fixedbugs/bug430.go

    // compile
    
    // Copyright 2012 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.
    
    // gccgo crashed compiling this.
    
    package main
    
    type S struct {
    	f [2][]int
    }
    
    func F() (r [2][]int) {
    	return
    }
    
    func main() {
    	var a []S
    	a[0].f = F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 30 15:42:21 UTC 2012
    - 327 bytes
    - Viewed (0)
  4. test/fixedbugs/gcc78763.go

    // compile
    
    // Copyright 2016 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.
    
    // The gccgo compiler crashed while compiling this code.
    // https://gcc.gnu.org/PR78763.
    
    package p
    
    import "unsafe"
    
    func F() int {
    	if unsafe.Sizeof(0) == 8 {
    		return 8
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 15 22:42:33 UTC 2016
    - 359 bytes
    - Viewed (0)
  5. test/fixedbugs/issue19678.go

    // compile
    
    // Copyright 2017 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.
    
    // Used to crash when compiling functions containing
    // forward refs in dead code.
    
    package p
    
    var f func(int)
    
    func g() {
    l1:
    	i := 0
    	goto l1
    l2:
    	f(i)
    	goto l2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:00:15 UTC 2017
    - 337 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue8828.go

    // Copyright 2014 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
    
    // Issue 8828: compiling a file with -compiler=gccgo fails if a .c file
    // has the same name as compiled directory.
    
    package cgotest
    
    import "cmd/cgo/internal/test/issue8828"
    
    func p() {
    	issue8828.Bar()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 382 bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/TestNGToolchainParameters.java

    /**
     * Parameters for configuring a TestNG test toolchain.
     *
     * @since 8.5
     */
    public interface TestNGToolchainParameters extends JvmTestToolchainParameters {
        /**
         * The version of TestNG to use for compiling and executing tests.
         */
        Property<String> getVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 996 bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device_compiler_client.cc

    }  // namespace
    
    absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>
    XlaDeviceCompilerClient::BuildExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::LocalExecutable.";
    
      std::vector<const xla::Shape*> argument_layouts =
          GetShapePointers(result.xla_input_shapes);
      xla::ExecutableBuildOptions build_options = GetExecutableBuildOptions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. test/live1.go

    // would have annotations printed if we used -live=1,
    // like the live.go test does.
    // Instead, this test relies on the fact that the liveness
    // analysis turns any non-live parameter on entry into
    // a compile error. Compiling successfully means that bug
    // has been avoided.
    
    package main
    
    // The liveness analysis used to get confused by the tail return
    // instruction in the wrapper methods generated for T1.M and (*T1).M,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  10. test/fixedbugs/bug436.go

    // run
    
    // Copyright 2012 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.
    
    // Gccgo used to crash compiling this.
    
    package main
    
    func foo() (int, int) {
    	return 1, 2
    }
    
    var c = b
    var a, b = foo()
    var d = b + 1
    
    func main() {
    	if a != 1 {
    		panic(a)
    	}
    	if b != 2 {
    		panic(b)
    	}
    	if c != 2 {
    		panic(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 03 17:33:10 UTC 2012
    - 428 bytes
    - Viewed (0)
Back to top