Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 137 for Eads (0.03 sec)

  1. releasenotes/notes/48031.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 128 bytes
    - Viewed (0)
  2. tests/test_tutorial/test_cookie_params/test_tutorial001_an_py39.py

                                        "title": "Ads Id",
                                    }
                                )
                                | IsDict(
                                    # TODO: remove when deprecating Pydantic v1
                                    {"title": "Ads Id", "type": "string"}
                                ),
                                "name": "ads_id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionPropertiesTest.groovy

        }
    
        def "should report invalid uri"() {
            when:
            new GcsConnectionProperties('httpdasd%:/ads', null, null)
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message == "System property [org.gradle.gcs.endpoint=httpdasd%:/ads]  must be a valid URI"
        }
    
        def "should allow case insensitive schemes"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_cookie_params/test_tutorial001_py310.py

                                        "title": "Ads Id",
                                    }
                                )
                                | IsDict(
                                    # TODO: remove when deprecating Pydantic v1
                                    {"title": "Ads Id", "type": "string"}
                                ),
                                "name": "ads_id",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/mono_test.go

    	for i, good := range goods {
    		if err := checkMono(t, good); err != nil {
    			t.Errorf("%d: unexpected failure: %v", i, err)
    		}
    	}
    }
    
    func TestMonoBad(t *testing.T) {
    	for i, bad := range bads {
    		if err := checkMono(t, bad); err == nil {
    			t.Errorf("%d: unexpected success", i)
    		} else {
    			t.Log(err)
    		}
    	}
    }
    
    var goods = []string{
    	"func F[T any](x T) { F(x) }",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. pkg/xds/monitoring.go

    package xds
    
    import (
    	"time"
    
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	Log = istiolog.RegisterScope("ads", "ads debugging")
    	log = Log
    
    	errTag  = monitoring.CreateLabel("err")
    	nodeTag = monitoring.CreateLabel("node")
    	typeTag = monitoring.CreateLabel("type")
    
    	TotalXDSInternalErrors = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/rds_test.go

    			[]string{"ht&p"},
    		},
    	}
    
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			ads := s.ConnectADS().WithType(v3.RouteType).WithID(tt.node)
    			ads.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: tt.routes})
    		})
    	}
    }
    
    const (
    	app3Ip    = "10.2.0.1"
    	gatewayIP = "10.3.0.1"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds_sh_test.go

    	t.Helper()
    	ads := s.ConnectADS().WithID(sidecarID)
    
    	metadata := &structpb.Struct{Fields: map[string]*structpb.Value{
    		"ISTIO_VERSION": {Kind: &structpb.Value_StringValue{StringValue: "1.3"}},
    		"NETWORK":       {Kind: &structpb.Value_StringValue{StringValue: network}},
    	}}
    
    	ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    		Node: &core.Node{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pkg/adsc/delta_test.go

    	ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    	EdsClusterConfig: &cluster.Cluster_EdsClusterConfig{
    		EdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_Ads{
    				Ads: &core.AggregatedConfigSource{},
    			},
    		},
    	},
    	LbPolicy: cluster.Cluster_ROUND_ROBIN,
    	TransportSocket: &core.TransportSocket{
    		Name: wellknown.TransportSocketTLS,
    		ConfigType: &core.TransportSocket_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/nds_test.go

    			s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    				ConfigString: mustReadFile(t, "./testdata/nds-se.yaml"),
    			})
    
    			ads := s.ConnectADS().WithType(v3.NameTableType)
    			res := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    				Node: &core.Node{
    					Id:       ads.ID,
    					Metadata: tt.meta.ToStruct(),
    				},
    			})
    
    			nt := &dnsProto.NameTable{}
    			err := res.Resources[0].UnmarshalTo(nt)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top