Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 495 for test32 (0.09 sec)

  1. src/net/testdata/aliases

    127.0.0.1 test
    127.0.0.2 test2.example.com 2.test
    127.0.0.3 3.test test3.example.com
    127.0.0.4 example.com
    127.0.0.5 test4.example.com 4.test 5.test test5.example.com
    
    # must be a non resolvable domain on the internet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:29:14 UTC 2022
    - 257 bytes
    - Viewed (0)
  2. test/typeparam/issue44688.go

    	m1v("")
    	m2v := b1.m2
    	m2v("")
    	b2v := b2.m2
    	b2v("")
    }
    
    // actual test case from issue
    
    type A[T any] struct{}
    
    func (*A[T]) f(T) {}
    
    type B[T any] struct{ A[T] }
    
    func test3() {
    	var b B[string]
    	b.A.f("")
    	b.f("")
    }
    
    func main() {
    	test1[string]("")
    	test2()
    	test3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. test/typeparam/geninline.dir/main.go

    package main
    
    import "./a"
    
    // Testing inlining of functions that refer to instantiated exported and non-exported
    // generic types.
    
    func main() {
    	a.Test1()
    	a.Test2()
    	a.Test3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 342 bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    			rows: []metav1.TableRow{
    				{Cells: []interface{}{"test1", "1/1", "podPhase", int64(5), "20h"}},
    				{Cells: []interface{}{"test2", "1/2", "podPhase", int64(30), "21h"}},
    				{Cells: []interface{}{"test3", "4/4", "podPhase", int64(1), "22h"}},
    			},
    			options: PrintOptions{},
    			expected: `NAME    READY   STATUS
    test1   1/1     podPhase
    test2   1/2     podPhase
    test3   4/4     podPhase
    `,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_test_race_issue56370.txt

    }
    
    func Test2(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test3(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test4(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 19:41:54 UTC 2022
    - 576 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

        def "downloads artifacts in parallel from a Maven repo - #expression"() {
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
            def m3 = mavenRepo.module('test', 'test3', '1.0').publish()
            def m4 = mavenRepo.module('test', 'test4', '1.0').publish()
    
            buildFile << """
                repositories {
                    maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/tests/object_test.cc

      parent.Set(String("test3"), Integer(3));
      Object child;
      child.Set(String("test1"), Integer(1));
      child.Set(String("test2"), Integer(2));
      child.Set(Object::ParentKey(), parent);
      EXPECT_EQ(child.Get<Integer>(String("test1"))->get(), 1);
      EXPECT_EQ(child.Get<Integer>(String("test2"))->get(), 2);
      EXPECT_EQ(child.Get<Integer>(String("test3"))->get(), 3);
      ASSERT_FALSE(child.Get<Integer>(String("test4")).status().ok());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

            run 'show'
    
            then:
            outputContains("files: [test-1.0, test-1.0, test-1.0-classy]")
            outputContains("display-names: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
            outputContains("ids: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
            outputContains("names: [test::jar, test::, test::]")
            outputContains("classifiers: [null, null, classy]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. test/typeparam/geninline.dir/a.go

    }
    
    type Val[T comparable] struct {
    	val T
    }
    
    //go:noinline
    func (l *Val[T]) check(want T) {
    	if l.val != want {
    		panic("hi")
    	}
    }
    
    func Test1() {
    	var l Val[int]
    	if l.val != 0 {
    		panic("hi")
    	}
    	_ = IVal[int](&l)
    }
    
    func Test2() {
    	var l Val[float64]
    	l.val = 3.0
    	l.check(float64(3))
    	_ = IVal[float64](&l)
    }
    
    type privateVal[T comparable] struct {
    	val T
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 15 16:57:36 UTC 2021
    - 799 bytes
    - Viewed (0)
  10. pkg/log/uds_test.go

    	go func() {
    		if err := http.Serve(unixListener, mux); err != nil {
    			t.Error(err)
    		}
    	}()
    
    	{
    		t.Log("test sending normal log")
    
    		WithLabels("k", "v").Info("test")
    		Warn("test2")
    		Sync()
    
    		// There should be two messages received at server
    		// {"msg":"test","k":"v"}
    		// {"msg":"test2"}
    		if got, want := len(srv.messages), 2; got != want {
    			t.Fatalf("number received log messages got %v want %v", got, want)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top