Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for foo77b (0.22 sec)

  1. test/escape2n.go

    }
    
    func foo77(z []interface{}) { // ERROR "z does not escape$"
    	myprint(nil, z...) // z does not escape
    }
    
    func foo77a(z []interface{}) { // ERROR "z does not escape$"
    	myprint1(nil, z...)
    }
    
    func foo77b(z []interface{}) { // ERROR "leaking param: z$"
    	var ppi **interface{}
    	*ppi = myprint1(nil, z...)
    }
    
    func foo77c(z []interface{}) { // ERROR "leaking param: z$"
    	sink = myprint1(nil, z...)
    }
    
    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

    }
    
    func foo77(z []interface{}) { // ERROR "z does not escape$"
    	myprint(nil, z...) // z does not escape
    }
    
    func foo77a(z []interface{}) { // ERROR "z does not escape$"
    	myprint1(nil, z...)
    }
    
    func foo77b(z []interface{}) { // ERROR "leaking param: z$"
    	var ppi **interface{}
    	*ppi = myprint1(nil, z...)
    }
    
    func foo77c(z []interface{}) { // ERROR "leaking param: z$"
    	sink = myprint1(nil, z...)
    }
    
    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/codegen/issue22703.go

    	foo057()
    	foo058()
    	foo059()
    	foo060()
    	foo061()
    	foo062()
    	foo063()
    	foo064()
    	foo065()
    	foo066()
    	foo067()
    	foo068()
    	foo069()
    	foo070()
    	foo071()
    	foo072()
    	foo073()
    	foo074()
    	foo075()
    	foo076()
    	foo077()
    	foo078()
    	foo079()
    	foo080()
    	foo081()
    	foo082()
    	foo083()
    	foo084()
    	foo085()
    	foo086()
    	foo087()
    	foo088()
    	foo089()
    	foo090()
    	foo091()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 03 20:20:54 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

        }
      }
      function {
        signature {
          name: "foo15"
        }
      }
      function {
        signature {
          name: "foo16"
        }
      }
      function {
        signature {
          name: "foo17"
        }
      }
      function {
        signature {
          name: "foo18"
        }
      }
      function {
        signature {
          name: "foo19"
        }
      }
      function {
        signature {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/ContextConfigTest.java

            try ( SmbFile f = new SmbFile("smb://foo:b%40r@127.0.0.1/") ) {
                Assert.assertEquals("foo:b%40r", f.getLocator().getURL().getUserInfo());
                NtlmPasswordAuthenticator na = f.getContext().getCredentials().unwrap(NtlmPasswordAuthenticator.class);
                Assert.assertEquals("b@r", na.getPassword());
            }
    
            try ( SmbFile f = new SmbFile(new URL("smb://foo:b%40r@127.0.0.1/")) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. test/typeparam/issue48838.go

    	check[string]()
    }
    
    func check[T any]() {
    	var result setter[T]
    	switch result.(type) {
    	case fooA[T]:
    	case fooB[T]:
    	}
    }
    
    type setter[T any] interface {
    	Set(T)
    }
    
    type fooA[T any] struct{}
    
    func (fooA[T]) Set(T) {}
    
    type fooB[T any] struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 467 bytes
    - Viewed (0)
  7. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProjectProfileTest.groovy

        def "provides sorted tasks"() {
            def profile = new ProjectProfile(":foo")
            def a = profile.getTaskProfile("foo:a").completed(Stub(TaskState)).setStart(100).setFinish(300)
            def b = profile.getTaskProfile("foo:b").completed(Stub(TaskState)).setStart(300).setFinish(300)
            def c = profile.getTaskProfile("foo:c").completed(Stub(TaskState)).setStart(300).setFinish(300)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/cache/cache_test.go

    	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")
    				c.Get("foo8") // doesn't exist
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue39634.go

    // crash 4
    type Numeric4 interface{t4 /* ERROR "not a type" */ }
    func t4[T Numeric4](s[]T){if( /* ERROR "non-boolean" */ 0){*s /* ERROR "cannot indirect" */ [0]}}
    
    // crash 7
    type foo7 interface { bar() }
    type x7[A any] struct{ foo7 }
    func main7() { var _ foo7 = x7[int]{} }
    
    // crash 8
    type foo8[A any] interface { ~A /* ERROR "cannot be a type parameter" */ }
    func bar8[A foo8[A]](a A) {}
    
    // crash 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            mavenRepo.module("org", "c").publish()
            //a1
            //b->a2->c
    
            buildFile << """
                $common
    
                dependencies {
                    conf 'org:a:1.0', 'foo:b:1.0'
                }
    
                configurations.conf.resolutionStrategy.dependencySubstitution.all {
                    if (it.requested.group == 'foo') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top