Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for foo19 (0.06 sec)

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

      function {
        signature {
          name: "foo9"
        }
      }
      function {
        signature {
          name: "foo10"
        }
      }
      function {
        signature {
          name: "foo11"
        }
      }
      function {
        signature {
          name: "foo12"
        }
      }
      function {
        signature {
          name: "foo13"
        }
      }
      function {
        signature {
          name: "foo14"
        }
      }
      function {
    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

    }
    
    func foo16(yy *int) { // ERROR "leaking param: yy$"
    	*xxx = yy
    }
    
    func foo17(yy *int) { // ERROR "yy does not escape$"
    	**xxx = *yy
    }
    
    func foo18(y int) { // ERROR "moved to heap: y$"
    	*xxx = &y
    }
    
    func foo19(y int) {
    	**xxx = y
    }
    
    type Bar struct {
    	i  int
    	ii *int
    }
    
    func NewBar() *Bar {
    	return &Bar{42, nil} // ERROR "&Bar{...} escapes to heap$"
    }
    
    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

    }
    
    func foo16(yy *int) { // ERROR "leaking param: yy$"
    	*xxx = yy
    }
    
    func foo17(yy *int) { // ERROR "yy does not escape$"
    	**xxx = *yy
    }
    
    func foo18(y int) { // ERROR "moved to heap: y$"
    	*xxx = &y
    }
    
    func foo19(y int) {
    	**xxx = y
    }
    
    type Bar struct {
    	i  int
    	ii *int
    }
    
    func NewBar() *Bar {
    	return &Bar{42, nil} // ERROR "&Bar{...} escapes to heap$"
    }
    
    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. test/codegen/issue22703.go

    	foo173()
    	foo174()
    	foo175()
    	foo176()
    	foo177()
    	foo178()
    	foo179()
    	foo180()
    	foo181()
    	foo182()
    	foo183()
    	foo184()
    	foo185()
    	foo186()
    	foo187()
    	foo188()
    	foo189()
    	foo190()
    	foo191()
    	foo192()
    	foo193()
    	foo194()
    	foo195()
    	foo196()
    	foo197()
    	foo198()
    	foo199()
    	foo200()
    	foo201()
    	foo202()
    	foo203()
    	foo204()
    	foo205()
    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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            def bar20 = mavenRepo.module('org', 'bar', '2.0').publish()
            def foo10 = mavenRepo.module('org', 'foo', '1.0').dependsOn(bar10).publish()
            def foo13 = mavenRepo.module('org', 'foo', '1.3').dependsOn(bar10).publish()
            def bar15 = mavenRepo.module('org', 'bar', '1.5').publish()
            def foo15 = mavenRepo.module('org', 'foo', '1.5').dependsOn(bar15).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation_test.go

    		ObjectMeta: metav1.ObjectMeta{Name: "foo11"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1", "key1"},
    			}},
    		},
    	}, {
    		// multiple drivers with one set of duplicate topology keys in driver specs
    		ObjectMeta: metav1.ObjectMeta{Name: "foo12"},
    		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)
  7. src/internal/types/testdata/fixedbugs/issue39634.go

    type G15[X any] s /* ERROR "undefined" */
    func (G15 /* ERRORx `generic type .* without instantiation` */ ) p()
    
    // crash 16
    type Foo16[T any] r16 /* ERROR "not a type" */
    func r16[T any]() Foo16[Foo16[T]] { panic(0) }
    
    // crash 17
    type Y17 interface{ c() }
    type Z17 interface {
    	c() Y17
    	Y17 /* ERROR "duplicate method" */
    }
    func F17[T Z17](T) {}
    
    // crash 18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. 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 {
                root(":", "org.test:test:1.9") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                }
                configurations {
                    conf
                }
            """
            def foo11 = mavenRepo.module("org", "foo", '1.0').publish()
            mavenRepo.module("org", "foo", '1.1').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(foo11).publish()
        }
    
        void "force resolution strategy is applied to dependency constraints"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top