Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for serverAddress (0.17 sec)

  1. src/net/rpc/server.go

    	}
    	go http.Serve(l, nil)
    
    At this point, clients can see a service "Arith" with methods "Arith.Multiply" and
    "Arith.Divide".  To invoke one, a client first dials the server:
    
    	client, err := rpc.DialHTTP("tcp", serverAddress + ":1234")
    	if err != nil {
    		log.Fatal("dialing:", err)
    	}
    
    Then it can make a remote call:
    
    	// Synchronous call
    	args := &server.Args{7,8}
    	var reply int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.go

    	}
    	key, cert := agent.GetKeyCertsForXDS()
    	return &istiogrpc.TLSOptions{
    		RootCert:      xdsCACertPath,
    		Key:           key,
    		Cert:          cert,
    		ServerAddress: agent.proxyConfig.DiscoveryAddress,
    		SAN:           p.istiodSAN,
    	}, nil
    }
    
    // tapRequest() sends "req" to Istiod, and returns a matching response, or `nil` on timeout.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. scripts/docs.py

        typer.echo("This is here only to preview a site with translations already built.")
        typer.echo("Make sure you run the build-all command first.")
        os.chdir("site")
        server_address = ("", 8008)
        server = HTTPServer(server_address, SimpleHTTPRequestHandler)
        typer.echo("Serving at: http://127.0.0.1:8008")
        server.serve_forever()
    
    
    @app.command()
    def live(
        lang: str = typer.Argument(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. samples/security/spire/spire-quickstart.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: spire-agent
      namespace: spire
    data:
      agent.conf: |
        agent {
          data_dir = "/run/spire"
          log_level = "DEBUG"
          server_address = "spire-server"
          server_port = "8081"
          socket_path = "/run/secrets/workload-spiffe-uds/socket"
          trust_bundle_path = "/run/spire/bundle/bundle.crt"
          trust_domain = "example.org"
        }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
Back to top