Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for foo_1_1 (0.54 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

    # CHECK:    "tf.LegacyCall"() <{_disable_call_shape_inference = false, f = @foo110}> {device = ""}
    # CHECK:    "tf.LegacyCall"() <{_disable_call_shape_inference = false, f = @foo111}> {device = ""}
    
    # CHECK-LABEL:  func private @foo110()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

            """
            checkConfiguration("compileClasspath")
    
            when:
            platform.pom.expectGet()
            platform.moduleMetadata.expectGet()
            foo11.pom.expectGet()
            foo11.moduleMetadata.expectGet()
            foo10.pom.expectGet()
            foo10.moduleMetadata.expectGet()
            foo10.artifact.expectGet()
    
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            given:
            def foo11 = mavenRepo.module("org", "foo", '1.0').artifact(classifier: 'shaded').publish()
            mavenRepo.module("org", "foo", '1.1').artifact(classifier: 'shaded').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(classifier: 'shaded', foo11).publish()
            writeSpec {
                rootProject {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. pkg/apis/storage/validation/validation_test.go

    			}, {
    				Name:         "driver2",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1"},
    			}},
    		},
    	}, {
    		// Volume limits being zero
    		ObjectMeta: metav1.ObjectMeta{Name: "foo11"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io.kubernetes.storage.csi.driver",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    			"apiVersion": crd.Spec.Group + "/" + versions[0],
    			"kind":       crd.Spec.Names.Kind,
    			"metadata": map[string]interface{}{
    				"namespace": ns,
    				"name":      instanceName,
    			},
    			"alpha":   "foo_123",
    			"beta":    10,
    			"gamma":   "bar",
    			"delta":   "hello",
    			"epsilon": "foobar",
    			"spec":    map[string]interface{}{},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:   "foo11",
    					Labels: map[string]string{"kubernetes.io/role": "node"},
    				},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo11", "Unknown", "node", "<unknown>", ""}}},
    		},
    	}
    
    	for i, test := range table {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top