Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for foo50 (0.05 sec)

  1. test/codegen/issue22703.go

    	foo489()
    	foo490()
    	foo491()
    	foo492()
    	foo493()
    	foo494()
    	foo495()
    	foo496()
    	foo497()
    	foo498()
    	foo499()
    	foo500()
    	foo501()
    	foo502()
    	foo503()
    	foo504()
    	foo505()
    	foo506()
    	foo507()
    	foo508()
    	foo509()
    	foo510()
    	foo511()
    }
    
    // Nil checks before calling interface methods.
    // We need it only when the offset is large.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 03 20:20:54 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  2. test/escape2n.go

    	F.xx = f.xx
    }
    
    func (f *Foo) foo47() { // ERROR "leaking param: f$"
    	f.xx = &f.x
    }
    
    var ptrSlice []*int
    
    func foo50(i *int) { // ERROR "leaking param: i$"
    	ptrSlice[0] = i
    }
    
    var ptrMap map[*int]*int
    
    func foo51(i *int) { // ERROR "leaking param: i$"
    	ptrMap[i] = i
    }
    
    func indaddr1(x int) *int { // ERROR "moved to heap: x$"
    	return &x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. test/escape2.go

    	F.xx = f.xx
    }
    
    func (f *Foo) foo47() { // ERROR "leaking param: f$"
    	f.xx = &f.x
    }
    
    var ptrSlice []*int
    
    func foo50(i *int) { // ERROR "leaking param: i$"
    	ptrSlice[0] = i
    }
    
    var ptrMap map[*int]*int
    
    func foo51(i *int) { // ERROR "leaking param: i$"
    	ptrMap[i] = i
    }
    
    func indaddr1(x int) *int { // ERROR "moved to heap: x$"
    	return &x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

      function {
        signature {
          name: "foo5"
        }
      }
      function {
        signature {
          name: "foo6"
        }
      }
      function {
        signature {
          name: "foo7"
        }
      }
      function {
        signature {
          name: "foo8"
        }
      }
      function {
        signature {
          name: "foo9"
        }
      }
      function {
        signature {
          name: "foo10"
        }
      }
      function {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/ClassLoaderLeakAvoidanceSoakTest.groovy

        }
    
        def "old build script classloaders are collected"() {
            given:
            buildFile << """
                class Foo0 {
                    static final byte[] MEMORY_HOG = new byte[10 * 1024 * 1024]
                }
                task myTask() {
                    doLast {
                        println new Foo0()
                    }
                }
            """
    
            expect:
            for(int i = 0; i < 35; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-library.pbtxt

    # CHECK-LABEL:  func @main() {
    # CHECK:    "tf.LegacyCall"() <{_disable_call_shape_inference = true, f = @foo0}> {device = ""}
    # CHECK:    "tf.LegacyCall"() <{_disable_call_shape_inference = false, f = @bar0}> {device = ""}
    
    # CHECK-LABEL:  func private @foo0()
    # CHECK: "tf.LegacyCall"() <{_disable_call_shape_inference = false, f = @bar0}> {device = ""}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-custom-operation.pbtxt

    # the names are matching between the function definition and the uses / call
    # site (a numerical suffix may be appended).
    
    # CHECK: "tf.LegacyCall"(%outputs) <{_disable_call_shape_inference = false, f = @foo0}> {device = ""}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            }
        }
    
        void 'dependency updated through constraints has its transitive dependencies'() {
            given:
            def foo10 = mavenRepo.module('org', 'foo', '1.0').publish()
            mavenRepo.module('org', 'bar', '1.0').publish()
            mavenRepo.module('org', 'bar', '1.1').dependsOn(foo10).publish()
            writeSpec {
                rootProject {
                    dependencies {
                        conf 'org:bar:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    				"request.requestKind.foo3 == 'nope'":     "undefined field 'foo3'",
    				"request.requestResource.foo4 == 'nope'": "undefined field 'foo4'",
    				"request.userInfo.foo5 == 'nope'":        "undefined field 'foo5'",
    			},
    		},
    		{
    			name:          "with authorizer",
    			hasAuthorizer: true,
    			expressions: []string{
    				"authorizer.group('') != null",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pkg/cache/cache_test.go

    	c.Set("foo4", "bar")
    	c.Set("foo5", "bar")
    	c.Set("foo6", "bar")
    	c.Set("foo7", "bar")
    
    	wg := new(sync.WaitGroup)
    	workers := runtime.NumCPU()
    	each := b.N / workers
    	wg.Add(workers)
    
    	b.ResetTimer()
    	for i := 0; i < workers; i++ {
    		go func() {
    			for j := 0; j < each; j++ {
    				c.Get("foo1")
    				c.Get("foo2")
    				c.Get("foo3")
    				c.Get("foo5")
    				c.Get("foo6")
    				c.Get("foo7")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top