Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for ads_service (0.39 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

          "services": {
            "analytics_service": {
              "status": 1
            },
            "appinvite_service": {
              "status": 1,
              "other_platform_oauth_client": []
            },
            "ads_service": {
              "status": 2
            }
          }
        },
        {
          "client_info": {
            "mobilesdk_app_id": "1:012345678912:android:0123456789abcdef",
            "android_client_info": {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice.go

    )
    
    var sdsServiceLog = log.RegisterScope("sds", "SDS service debugging")
    
    type sdsservice struct {
    	st security.SecretManager
    
    	stop       chan struct{}
    	rootCaPath string
    	pkpConf    *mesh.PrivateKeyProvider
    
    	sync.Mutex
    	clients map[string]*Context
    }
    
    type Context struct {
    	BaseConnection xds.Connection
    	s              *sdsservice
    	w              *Watch
    }
    
    type Watch struct {
    	sync.Mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tools/packaging/common/gcp_envoy_bootstrap.json

                    {{ with .xds_root_cert}}"root_certs": {"filename": "{{.}}"}{{ end }}
                  }
                },
                "call_credentials": [{
                {{ if .sts }}
                  "sts_service": {
                    "token_exchange_service_uri": "http://localhost:{{ .sts_port }}/token",
                    "subject_token_path": "./var/run/secrets/tokens/istio-token",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/main.go

    // No CLI parameters.
    func main() {
    	log.EnableKlogWithCobra()
    	rootCmd := app.NewRootCommand(
    		func(options *security.Options, workloadSecretCache security.SecretManager, pkpConf *meshconfig.PrivateKeyProvider) istioagent.SDSService {
    			return sds.NewServer(options, workloadSecretCache, pkpConf)
    		})
    	if err := rootCmd.Execute(); err != nil {
    		log.Error(err)
    		os.Exit(-1)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/memory/discovery.go

    	sd.AddService(&model.Service{
    		Hostname:       host.Name(name),
    		DefaultAddress: vip,
    		Ports: model.PortList{
    			{
    				Name:     "http-main",
    				Port:     port,
    				Protocol: protocol.HTTP,
    			},
    		},
    	})
    }
    
    // AddService adds an in-memory service and notifies
    func (sd *ServiceDiscovery) AddService(svc *model.Service) {
    	sd.mutex.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	s.assertEvent(t, s.wleXdsName("name3"))
    
    	// Non-existent IP should have no response
    	s.assertWorkloads(t, s.addrXdsName("10.0.0.1"), workloadapi.WorkloadStatus_HEALTHY)
    	s.clearEvents()
    
    	s.addService(t, "svc1", map[string]string{}, // labels
    		map[string]string{}, // annotations
    		[]int32{80},
    		map[string]string{"app": "a"}, // selector
    		"10.0.0.1",
    	)
    	// Service shouldn't change workload list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			s.addWaypoint(t, "10.0.0.10", "test-wp", c.trafficType, true)
    			s.addPods(t, "127.0.0.1", "pod1", "sa1",
    				map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    			s.assertEvent(t, s.podXdsName("pod1"))
    			s.addService(t, "svc1",
    				map[string]string{},
    				map[string]string{},
    				[]int32{80}, map[string]string{"app": "a"}, "10.0.0.1")
    			s.assertEvent(t, s.svcXdsName("svc1"), s.podXdsName("pod1"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/sds/server.go

    	"istio.io/istio/pkg/uds"
    )
    
    const (
    	maxStreams    = 100000
    	maxRetryTimes = 5
    )
    
    // Server is the gPRC server that exposes SDS through UDS.
    type Server struct {
    	workloadSds *sdsservice
    
    	grpcWorkloadListener net.Listener
    
    	grpcWorkloadServer *grpc.Server
    	stopped            *atomic.Bool
    }
    
    // NewServer creates and starts the Grpc server for SDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent.go

    const (
    	DrainLifecycleEvent LifecycleEvent = "drain"
    	ExitLifecycleEvent  LifecycleEvent = "exit"
    )
    
    type SDSService interface {
    	OnSecretUpdate(resourceName string)
    	Stop()
    }
    
    type SDSServiceFactory = func(_ *security.Options, _ security.SecretManager, _ *mesh.PrivateKeyProvider) SDSService
    
    // Shared properties with Pilot Proxy struct.
    type Proxy struct {
    	ID          string
    	IPAddresses []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	registries[0].DiscoveryController.(*memory.ServiceDiscovery).AddService(mock.HelloService)
    	registries[1].DiscoveryController.(*memory.ServiceDiscovery).AddService(mock.HelloService)
    
    	ctrl.DeleteRegistry(registries[1].Cluster(), registries[1].Provider())
    	ctrl.UnRegisterHandlersForCluster(registries[1].Cluster())
    	registries[0].DiscoveryController.(*memory.ServiceDiscovery).AddService(mock.HelloService)
    
    	if registry1Counter.Load() != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top