Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for xdsserver (0.12 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    			InstanceIP:  p.InstanceIP,
    			LocalhostIP: p.LocalhostIP,
    		}
    		containerPorts = append(containerPorts, cport)
    
    		switch p.Protocol {
    		case protocol.GRPC:
    			if cfg.IsProxylessGRPC() {
    				cport.XDSServer = true
    			}
    			continue
    		case protocol.HTTP:
    			if p.WorkloadPort == httpReadinessPort {
    				readyPort = cport
    			}
    		default:
    			if p.WorkloadPort == tcpHealthPort {
    				healthPort = cport
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

    import javax.servlet.http.HttpServletRequest
    import javax.servlet.http.HttpServletResponse
    import java.security.MessageDigest
    
    import static org.apache.commons.codec.binary.Base64.encodeBase64String
    
    class GcsServer extends HttpServer implements RepositoryServer {
    
        private static final String BUCKET_NAME = "testgcsbucket"
        private static final DateTimeZone GMT = new FixedDateTimeZone("GMT", "GMT", 0, 0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. pkg/test/echo/server/instance.go

    	}
    	return "", fmt.Errorf("--bind-ip set but INSTANCE_IP undefined")
    }
    
    func (s *Instance) newEndpoint(port *common.Port, listenerIP string, udsServer string) (endpoint.Instance, error) {
    	return endpoint.New(endpoint.Config{
    		Port:          port,
    		UDSServer:     udsServer,
    		IsServerReady: s.isReady,
    		Version:       s.Version,
    		Cluster:       s.Cluster,
    		TLSCert:       s.TLSCert,
    		TLSKey:        s.TLSKey,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. pkg/log/uds_test.go

    // limitations under the License.
    
    package log
    
    import (
    	"encoding/json"
    	"io"
    	"net"
    	"net/http"
    	"path/filepath"
    	"reflect"
    	"testing"
    	"time"
    )
    
    type udsServer struct {
    	messages []string
    }
    
    func (us *udsServer) handleLog(w http.ResponseWriter, r *http.Request) {
    	var body []byte
    	if r.Body != nil {
    		if data, err := io.ReadAll(r.Body); err == nil {
    			body = data
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    				// is called by sdsServer.OnSecretUpdate, which triggers a push and eventually calls sdsservice.Generate
    				// TODO: extract the logic to detect expiration time, and use a simpler code to rotate to files.
    				_, _ = a.getWorkloadCerts(st)
    			})
    			_, _ = a.getWorkloadCerts(st)
    		}()
    	} else {
    		pkpConf := a.proxyConfig.GetPrivateKeyProvider()
    		a.sdsServer = a.cfg.SDSFactory(a.secOpts, a.secretCache, pkpConf)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. pkg/test/echo/server/endpoint/instance.go

    type OnReadyFunc func()
    
    // Config for a single endpoint Instance.
    type Config struct {
    	IsServerReady IsServerReadyFunc
    	Version       string
    	Cluster       string
    	TLSCert       string
    	TLSKey        string
    	UDSServer     string
    	Dialer        common.Dialer
    	Port          *common.Port
    	ListenerIP    string
    	IstioVersion  string
    	Namespace     string
    	DisableALPN   bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/AbstractGcsDependencyResolutionTest.groovy

    abstract class AbstractGcsDependencyResolutionTest extends AbstractDependencyResolutionTest {
    
        @Rule
        public final GcsServer server = new GcsServer(temporaryFolder)
    
        def setup() {
            executer.withArgument('-i')
            executer.withArgument("-D${GCS_ENDPOINT_PROPERTY}=${server.uri}")
            executer.withArgument("-D${GCS_SERVICE_PATH_PROPERTY}=/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/name_table.go

    	if node.Type != model.SidecarProxy {
    		// DNS resolution is only for sidecars
    		return nil
    	}
    	return dnsServer.BuildNameTable(dnsServer.Config{
    		Node:                        node,
    		Push:                        push,
    		MulticlusterHeadlessEnabled: features.MulticlusterHeadlessEnabled,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/cni-watcher_test.go

    		valid.Netns,
    	).Return(nil)
    
    	dpServer := &meshDataplane{
    		kubeClient: client.Kube(),
    		netServer:  fs,
    	}
    
    	handlers := setupHandlers(ctx, client, dpServer, "istio-system")
    
    	// We are not going to start the server, so the sockpath is irrelevant
    	pluginServer := startCniPluginServer(ctx, "/tmp/test.sock", handlers, dpServer)
    
    	// label the namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenPublishGcsIntegrationTest.groovy

    @Requires(UnitTestPreconditions.NotWindows)
    class MavenPublishGcsIntegrationTest extends AbstractMavenPublishIntegTest {
        @Rule
        public GcsServer server = new GcsServer(temporaryFolder)
    
        def setup() {
            executer.withArgument('-i')
            executer.withArgument("-D${GCS_ENDPOINT_PROPERTY}=${server.uri}")
            executer.withArgument("-D${GCS_SERVICE_PATH_PROPERTY}=/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top