Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for foo77b (0.1 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. 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)
  4. src/io/multi_test.go

    		mr = MultiReader(buf1, buf2)
    		runtime.SetFinalizer(buf1, func(*bytes.Reader) {
    			close(closed)
    		})
    	}()
    
    	buf := make([]byte, 4)
    	if n, err := ReadFull(mr, buf); err != nil || string(buf) != "foob" {
    		t.Fatalf(`ReadFull = %d (%q), %v; want 3, "foo", nil`, n, buf[:n], err)
    	}
    
    	runtime.GC()
    	select {
    	case <-closed:
    	case <-time.After(5 * time.Second):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            e1.dependsOn(b2).publish()
            b2.publish()
    
            buildFile << """
                dependencies {
                    implementation 'org.foo:a:1.0'
                    implementation 'org.foo:b:1.0'
                    implementation 'org.foo:d:1.0'
                    implementation 'org.foo:e:1.0'
    
                    modules.module('org.foo:c') { replacedBy('org.foo:f') }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    				makeGCContainer("foo5", "bar5", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo6", "bar6", 2, 2, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo7", "bar7", 1, 1, runtimeapi.ContainerState_CONTAINER_EXITED),
    			},
    			remain:               []int{0, 2, 4, 6, 8, 9},
    			evictTerminatingPods: false,
    			allSourcesReady:      true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top