Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for testEdsz (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top