Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for testEdsz (0.34 sec)

  1. pilot/pkg/xds/eds_test.go

    	t.Run("TCPEndpoints", func(t *testing.T) {
    		testTCPEndpoints("127.0.0.1", adscConn, t)
    	})
    	t.Run("edsz", func(t *testing.T) {
    		testEdsz(t, s, "test-1.default")
    	})
    	t.Run("LocalityPrioritizedEndpoints", func(t *testing.T) {
    		testLocalityPrioritizedEndpoints(adscConn, adscConn2, t)
    	})
    	t.Run("UDSEndpoints", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. src/runtime/fds_test.go

    	"internal/testenv"
    	"os"
    	"strings"
    	"testing"
    )
    
    func TestCheckFDs(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    
    	testenv.MustHaveGoBuild(t)
    
    	fdsBin, err := buildTestProg(t, "testfds")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	i, err := os.CreateTemp(t.TempDir(), "fds-input")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, err := i.Write([]byte("stdin")); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 16:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CompositeDataReporter.java

        private final Set<String> testIds = new HashSet<>();
    
        public CompositeDataReporter(List<DataReporter<CrossVersionPerformanceResults>> reporters) {
            this.reporters = reporters;
        }
    
        @Override
        public void report(CrossVersionPerformanceResults results) {
            if (!testIds.add(results.getTestId())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/lds_test.go

    	l := adsc.GetHTTPListeners()["0.0.0.0_443"]
    
    	if l != nil {
    		if len(l.FilterChains) != 3 {
    			t.Fatalf("Expected 3 filter chains, got %d\n", len(l.FilterChains))
    		}
    	}
    }
    
    // TestLDS is running LDS tests.
    func TestLDS(t *testing.T) {
    	t.Run("sidecar", func(t *testing.T) {
    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    		ads := s.ConnectADS().WithType(v3.ListenerType)
    		ads.RequestResponseAck(t, nil)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/unsafe_test.go

    	*ui32 = 0xffffffff
    	*ui64 = 0                  // store
    	ret := *ui32               // load from same address, should be zero
    	*ui64 = 0xffffffffffffffff // store
    	return ret
    }
    func testdse(t *testing.T) {
    	x := int64(-1)
    	// construct two pointers that alias one another
    	ui64 := (*uint64)(unsafe.Pointer(&x))
    	ui32 := (*uint32)(unsafe.Pointer(&x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/rds_test.go

    package xds_test
    
    import (
    	"fmt"
    	"testing"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    )
    
    func TestRDS(t *testing.T) {
    	tests := []struct {
    		name   string
    		node   string
    		routes []string
    	}{
    		{
    			"sidecar_new",
    			sidecarID(app3Ip, "app3"),
    			[]string{"80", "8080"},
    		},
    		{
    			"gateway_new",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/nds_test.go

    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pkg/config/constants"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    )
    
    func TestNDS(t *testing.T) {
    	cases := []struct {
    		name     string
    		meta     model.NodeMetadata
    		expected *dnsProto.NameTable
    	}{
    		{
    			name: "auto allocate",
    			meta: model.NodeMetadata{
    				DNSCapture:      true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/cds_test.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestCDS(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	ads := s.ConnectADS().WithType(v3.ClusterType)
    	ads.RequestResponseAck(t, nil)
    }
    
    func TestSAN(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/sds/sdsservice_test.go

    	}
    	t.Cleanup(func() {
    		server.Stop()
    	})
    	return &TestServer{
    		t:       t,
    		server:  server,
    		store:   st,
    		udsPath: ca2.WorkloadIdentitySocketPath,
    	}
    }
    
    func TestSDS(t *testing.T) {
    	expectCert := Expectation{
    		ResourceName: testResourceName,
    		CertChain:    fakeCertificateChain,
    		Key:          fakePrivateKey,
    	}
    	expectRoot := Expectation{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/runtime/crash_test.go

    		} else {
    			t.Logf("built %v in %v", name, time.Since(start))
    			target.exe = exe
    			target.err = nil
    		}
    	})
    
    	return target.exe, target.err
    }
    
    func TestVDSO(t *testing.T) {
    	t.Parallel()
    	output := runTestProg(t, "testprog", "SignalInVDSO")
    	want := "success\n"
    	if output != want {
    		t.Fatalf("output:\n%s\n\nwanted:\n%s", output, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top