Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,261 for Inlined (0.15 sec)

  1. test/runtime/inlinegcpc.go

    // cannot be inlined, no matter how small it is.
    
    func getcallerpc() uintptr
    func getcallersp() uintptr
    
    func pc() uintptr {
    	return getcallerpc() + 1
    }
    
    func cpc() uintptr { // ERROR "can inline cpc"
    	return pc() + 2
    }
    
    func sp() uintptr {
    	return getcallersp() + 3
    }
    
    func csp() uintptr { // ERROR "can inline csp"
    	return sp() + 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 28 19:27:20 UTC 2019
    - 618 bytes
    - Viewed (0)
  2. test/fixedbugs/issue7023.go

    // compiledir
    
    // 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.
    
    // Issue 7023: corrupted export data when an inlined function
    // contains a goto.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 10 00:33:24 UTC 2014
    - 274 bytes
    - Viewed (0)
  3. test/closure3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check correctness of various closure corner cases
    // that are expected to be inlined
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 358 bytes
    - Viewed (0)
  4. test/closure5.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check correctness of various closure corner cases
    // that are expected to be inlined
    package main
    
    import "./a"
    
    func main() {
    	if !a.G()()() {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 328 bytes
    - Viewed (0)
  5. test/closure5.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check correctness of various closure corner cases
    // that are expected to be inlined
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 20 22:53:32 UTC 2021
    - 280 bytes
    - Viewed (0)
  6. test/fixedbugs/issue4879.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4879: export data misses the '&' for some
    // composite literals in inlined bodies.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 25 23:43:31 UTC 2013
    - 284 bytes
    - Viewed (0)
  7. releasenotes/notes/46693.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 45150
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 22:07:15 UTC 2023
    - 267 bytes
    - Viewed (0)
  8. test/fixedbugs/issue4370.go

    // compiledir
    
    // 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.
    
    // Re-exporting inlined function bodies missed types in x, ok := v.(Type)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 266 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_issue62156.txt

    # Regression test for https://go.dev/issue/62156:
    # DWARF generation for inlined functions may require more runtime type
    # descriptors to be written.
    
    go build
    
    -- go.mod --
    module m
    
    go 1.20
    -- main.go --
    package main
    
    import "m/sub"
    
    func main() { sub.F() }
    -- sub/sub.go --
    package sub
    
    type iface interface{ m() }
    
    func F() {
    	f := func(rt []iface) []iface {
    		return append([]iface{}, rt...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 23:18:16 UTC 2023
    - 410 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/convert_tpu_model_to_cpu.mlir

    // CHECK: %[[identity:.*]] = "tf.IdentityN"(%[[conv]]) {device = ""} : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xf32>
    // CHECK: return %[[identity]] : tensor<1x3x2x2xf32>
    
    // -----
    
    // Tests that `tf.BatchFunction` is inlined.
    
    func.func @serving_default(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>) -> tensor<1xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top