Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Test3 (0.04 sec)

  1. pilot/pkg/model/context_test.go

    				CreationTime: tnow.Add(1 * time.Second),
    				Hostname:     host.Name("test1.com"),
    			},
    		},
    		{
    			Service: &model.Service{
    				CreationTime: tnow,
    				Hostname:     host.Name("test3.com"),
    			},
    		},
    		{
    			Service: &model.Service{
    				CreationTime: tnow,
    				Hostname:     host.Name("test2.com"),
    			},
    		},
    	}
    
    	serviceDiscovery := memory.NewServiceDiscovery()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. pilot/pkg/trustbundle/trustbundle_test.go

    	}
    	// Check server1's anchor has been added along with meshConfig pem cert
    	expectTbCount(t, tb, 2, 3*time.Second, "server1(running) trustAnchor not updated in bundle")
    
    	// Test3: Stop server1
    	server1.Close()
    	// Check server1's valid trustAnchor is no longer in the trustbundle within poll frequency window
    	expectTbCount(t, tb, 1, 6*time.Second, "server1(stopped) trustAnchor not removed from bundle")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/ipset/ipset_test.go

    			},
    		},
    		{
    			name: "test part of the IPSet fields present",
    			set: &IPSet{
    				Name:       "test3",
    				SetType:    BitmapPort,
    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   65535,
    			},
    			expect: &IPSet{
    				Name:       "test3",
    				SetType:    BitmapPort,
    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   65535,
    				MaxElem:    65536,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  4. src/encoding/xml/read_test.go

    		}
    	}
    }
    
    const OK = "OK"
    const withoutNameTypeData = `
    <?xml version="1.0" charset="utf-8"?>
    <Test3 Attr="OK" />`
    
    type TestThree struct {
    	XMLName Name   `xml:"Test3"`
    	Attr    string `xml:",attr"`
    }
    
    func TestUnmarshalWithoutNameType(t *testing.T) {
    	var x TestThree
    	if err := Unmarshal([]byte(withoutNameTypeData), &x); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder_test.go

    	services := []*model.Service{
    		buildServiceWithPort("test1.com", 80, protocol.HTTP, tnow),
    		buildServiceWithPort("test2.com", 81, protocol.Unsupported, tnow),
    		buildServiceWithPort("test3.com", 82, protocol.TCP, tnow),
    	}
    	instances := make([]*model.ServiceInstance, 0, len(services))
    	for _, s := range services {
    		instances = append(instances, &model.ServiceInstance{
    			Service: s,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcshared/cshared_test.go

    	defer os.Remove(libname)
    	defer os.Remove(bin)
    
    	out := runExe(t, []string{"LD_LIBRARY_PATH=."}, bin)
    
    	if strings.TrimSpace(out) != "PASS" {
    		t.Error(out)
    	}
    }
    
    // test3: tests main.main is exported on android.
    func TestMainExportedOnAndroid(t *testing.T) {
    	globalSkip(t)
    	testenv.MustHaveCGO(t)
    	testenv.MustHaveExec(t)
    
    	t.Parallel()
    
    	switch GOOS {
    	case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. pkg/api/v1/pod/util_test.go

    			name:     "test1",
    			expected: ExpectedStruct{status: v1.ContainerStatus{}, exists: false},
    			desc:     "no matching ContainerStatus with Name=\"test1\"",
    		},
    		{
    			status:   []v1.ContainerStatus{{Name: "test3", Ready: false, Image: "image3"}},
    			name:     "",
    			expected: ExpectedStruct{status: v1.ContainerStatus{}, exists: false},
    			desc:     "retrieve an empty ContainerStatus with container name empty",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  8. src/net/mail/message_test.go

    		`<"()<>[]:,;@\\\"!#$%&'*+-/=?^_{}| ~.a"@example.org>`,                      // escaped backslashes
    		`<"Abc\\@def"@example.com>`,
    		`<"Joe\\Blow"@example.com>`,
    		`<test1/test2=test3@example.com>`,
    		`<def!******@****.***>`,
    		`<******@****.***>`,
    		`<joe@uk>`,
    		`<~@example.com>`,
    		`<"..."@test.com>`,
    		`<"john..doe"@example.com>`,
    		`<"john.doe."@example.com>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top