Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for foo51 (1.84 sec)

  1. test/escape2n.go

    var save151 *int
    
    func foo151(x *int) { // ERROR "leaking param: x$"
    	save151 = x
    }
    
    func bar151() {
    	var a [64]int // ERROR "moved to heap: a$"
    	a[4] = 101
    	foo151(&(&a)[4:8][0])
    }
    
    func bar151b() {
    	var a [10]int // ERROR "moved to heap: a$"
    	b := a[:]
    	foo151(&b[4:8][0])
    }
    
    func bar151c() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. test/escape2.go

    var save151 *int
    
    func foo151(x *int) { // ERROR "leaking param: x$"
    	save151 = x
    }
    
    func bar151() {
    	var a [64]int // ERROR "moved to heap: a$"
    	a[4] = 101
    	foo151(&(&a)[4:8][0])
    }
    
    func bar151b() {
    	var a [10]int // ERROR "moved to heap: a$"
    	b := a[:]
    	foo151(&b[4:8][0])
    }
    
    func bar151c() {
    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. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

    # This test is tailored to reproduce b/141617294. In particular, the function
    # library contains "foo1", "foo2", ..., "foo20", from which "foo1" and "foo11"
    # were mapped to the same name "foo110" in the bug.
    node {
      name: "unnamed"
      op: "foo1"
    }
    node {
      name: "unnamed1"
      op: "foo11"
    }
    library {
      function {
        signature {
          name: "foo1"
        }
      }
      function {
        signature {
          name: "foo2"
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. test/codegen/issue22703.go

    	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.
    
    func callMethodSmallOffset(i I) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 03 20:20:54 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    			errorExpressions: map[string]string{
    				"request.foo1 == 'nope'":                 "undefined field 'foo1'",
    				"request.resource.foo2 == 'nope'":        "undefined field 'foo2'",
    				"request.requestKind.foo3 == 'nope'":     "undefined field 'foo3'",
    				"request.requestResource.foo4 == 'nope'": "undefined field 'foo4'",
    				"request.userInfo.foo5 == 'nope'":        "undefined field 'foo5'",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/strings/replace_test.go

    	// and 1- or 2- byte extensions from the common prefix.
    	foo1 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo3", "C",
    	)
    	foo2 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo31", "C",
    		"foo32", "D",
    	)
    	foo3 := NewReplacer(
    		"foo11", "A",
    		"foo12", "B",
    		"foo31", "C",
    		"foo32", "D",
    	)
    	foo4 := NewReplacer(
    		"foo12", "B",
    		"foo32", "D",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  7. pkg/cache/cache_test.go

    		go func() {
    			for j := 0; j < each; j++ {
    				c.Set("foo1", "bar")
    				c.Set("foo2", "bar")
    				c.Set("foo3", "bar")
    				c.Set("foo4", "bar")
    				c.Set("foo5", "bar")
    				c.Set("foo6", "bar")
    				c.Set("foo7", "bar")
    			}
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    }
    
    func benchmarkCacheGetSetConcurrent(c Cache, b *testing.B) {
    	c.Set("foo1", "bar")
    	c.Set("foo2", "bar")
    	c.Set("foo3", "bar")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    		// remove a driver
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io.kubernetes.storage.csi.driver-1",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// add a driver
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1"},
    		Spec: storage.CSINodeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    				makeGCContainer("foo", "bar", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo1", "baz", 2, 2, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo1", "baz", 1, 1, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo1", "baz", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo2", "bar", 2, 2, runtimeapi.ContainerState_CONTAINER_EXITED),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. pkg/util/taints/taints_test.go

    			taintToFind:    &v1.Taint{Key: "foo_1", Value: "bar_1", Effect: v1.TaintEffectNoExecute},
    			expectedResult: true,
    		},
    		{
    			name:           "different key",
    			taintToFind:    &v1.Taint{Key: "no_such_key", Value: "bar_1", Effect: v1.TaintEffectNoExecute},
    			expectedResult: false,
    		},
    		{
    			name:           "different effect",
    			taintToFind:    &v1.Taint{Key: "foo_1", Value: "bar_1", Effect: v1.TaintEffectNoSchedule},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
Back to top