Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,261 for Inlined (0.2 sec)

  1. test/fixedbugs/issue11053.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.
    
    // Issue 11053: Compiler does not run escape analysis on an inlined
    // generated method wrapper.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 17 02:36:45 UTC 2015
    - 285 bytes
    - Viewed (0)
  2. test/fixedbugs/issue9537.go

    // rundir
    
    // 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 9537: Compiler does not run escape analysis on an inlined
    // generated method wrapper.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 22 03:25:12 UTC 2015
    - 284 bytes
    - Viewed (0)
  3. test/fixedbugs/bug407.dir/two.go

    // 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.
    
    // Use the functions in one.go so that the inlined
    // forms get type-checked.
    
    package two
    
    import "./one"
    
    func use() {
    	var r one.T
    	r.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 303 bytes
    - Viewed (0)
  4. test/inline.go

    		return x + func(y int) int { // ERROR "can inline r.func2.1" "can inline r.r.func2.func3"
    			return 2*y + x*z
    		}(x) // ERROR "inlining call to r.func2.1"
    	}
    	return foo(42) + bar(42) // ERROR "inlining call to r.func1" "inlining call to r.func2" "inlining call to r.r.func2.func3"
    }
    
    func s0(x int) int { // ERROR "can inline s0"
    	foo := func() { // ERROR "can inline s0.func1" "func literal does not escape"
    		x = x + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/passes/decompose.cc

    LogicalResult DecomposeTFOpsPass::InlineTFRFuncCalls() {
      // The Inliner will automatically use the registered dialect inliner.
      InlinerInterface inliner(&getContext());
      func::FuncOp func = getOperation();
      SymbolTable table(external_tfr_module_.has_value()
                            ? *external_tfr_module_
                            : func->getParentOfType<ModuleOp>());
    
      // The inliner only inlines the TFR call op.
      bool changed = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue60945.dir/a.go

    package a
    
    type S struct{}
    
    func callClosure(closure func()) {
    	closure()
    }
    
    func (s *S) M() {
    	callClosure(func() {
    		defer f(s.m) // prevent closures to be inlined.
    	})
    }
    
    func (s *S) m() {}
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 388 bytes
    - Viewed (0)
  7. test/fixedbugs/issue15572.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that exporting composite literals with implicit
    // types doesn't crash the typechecker when running over
    // inlined function bodies containing such literals.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 358 bytes
    - Viewed (0)
  8. test/fixedbugs/bug392.dir/pkg2.go

    // 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.
    
    // Use the functions in one.go so that the inlined
    // forms get type-checked.
    
    package pkg2
    
    import "./one"
    
    func use() {
    	one.F1(nil)
    	one.F2(nil)
    	one.F3()
    	one.F4(1)
    
    	var t *one.T
    	t.M()
    	t.MM()
    }
    
    var V = []one.PB{{}, {}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 405 bytes
    - Viewed (0)
  9. test/fixedbugs/issue12677.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 12677: Type loss during export/import of inlined function body.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 16 20:30:04 UTC 2015
    - 265 bytes
    - Viewed (0)
  10. test/fixedbugs/issue5910.go

    // Copyright 2013 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 5910: parsing of unnamed struct types
    // in inlined bodies was broken.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 05 20:09:53 UTC 2013
    - 272 bytes
    - Viewed (0)
Back to top