Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for s_server (0.15 sec)

  1. security/pkg/nodeagent/test/mock/caserver.go

    		GRPCServer:      grpc.NewServer(opts...),
    		faultInjectLock: &sync.Mutex{},
    	}
    	// Register CA service at gRPC server.
    	pb.RegisterIstioCertificateServiceServer(server.GRPCServer, server)
    	ghc.RegisterHealthServer(server.GRPCServer, server)
    	return server, server.start(port)
    }
    
    func (s *CAServer) start(port int) error {
    	listener, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", port))
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/hbone/server.go

    	"istio.io/istio/pkg/h2c"
    )
    
    func NewServer() *http.Server {
    	// Need to set this to allow timeout on the read header
    	h1 := &http.Transport{
    		ExpectContinueTimeout: 3 * time.Second,
    	}
    	h2, _ := http2.ConfigureTransports(h1)
    	h2.ReadIdleTimeout = 10 * time.Minute // TODO: much larger to support long-lived connections
    	h2.AllowHTTP = true
    	h2Server := &http2.Server{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

        public int getPort() {
            return port;
        }
    
        public void setPort(int port) {
            this.port = port;
        }
    
        public boolean isServer() {
            return server;
        }
    
        public void setServer(boolean server) {
            this.server = server;
        }
    
        public boolean isSuspend() {
            return suspend;
        }
    
        public void setSuspend(boolean suspend) {
            this.suspend = suspend;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/AbstractS3DependencyResolutionTest.groovy

    import org.gradle.integtests.resource.s3.fixtures.S3Server
    import org.junit.Rule
    
    abstract class AbstractS3DependencyResolutionTest extends AbstractDependencyResolutionTest {
    
        @Rule
        public final S3Server server = new S3Server(temporaryFolder)
    
        def setup() {
            executer.withArgument('-i')
            executer.withArgument("-Dorg.gradle.s3.endpoint=${server.uri}")
        }
    
        String getBucket() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/MavenS3Repository.groovy

    class MavenS3Repository implements MavenRepository {
        private final S3Server server
        private final MavenFileRepository backingRepository
        private final String bucket
        private final String repositoryPath
    
        MavenS3Repository(S3Server server, File repoDir, String repositoryPath, String bucket) {
            assert !bucket.startsWith('/')
            this.server = server
            this.bucket = bucket
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/ivy/IvyPublishS3IntegrationTest.groovy

    import org.gradle.integtests.resource.s3.fixtures.S3Server
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.junit.Rule
    
    @Requires(IntegTestPreconditions.CanPublishToS3)
    class IvyPublishS3IntegrationTest extends AbstractIvyPublishIntegTest {
        @Rule
        public S3Server server = new S3Server(temporaryFolder)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/ivy/IvyS3RepoResolveIntegrationTest.groovy

    import org.gradle.integtests.resource.s3.fixtures.S3Server
    import org.gradle.test.fixtures.server.RepositoryServer
    import org.junit.Rule
    
    class IvyS3RepoResolveIntegrationTest extends AbstractIvyRemoteRepoResolveIntegrationTest {
    
        @Rule
        S3Server server = new S3Server(temporaryFolder)
    
        @Override
        RepositoryServer getServer() {
            return server
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/MavenS3Module.groovy

        MavenFileModule backingModule
        S3Server server
        String bucket
        String repositoryPath
    
        MavenS3Module(S3Server server, MavenFileModule backingModule, String repositoryPath, String bucket) {
            super(backingModule)
            this.bucket = bucket
            this.server = server
            this.backingModule = backingModule
            this.repositoryPath = repositoryPath
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Resource.groovy

    class S3Resource implements RemoteResource {
        S3Server server
        TestFile file
        String bucket
        String repositoryPath
    
        S3Resource(S3Server server, TestFile file, String repositoryPath, String bucket) {
            this.repositoryPath = repositoryPath
            this.bucket = bucket
            this.server = server
            this.file = file
        }
    
        String getPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3DirectoryResource.groovy

    class S3DirectoryResource implements RemoteResource {
    
        private final S3Server server
        private final TestFile directory
        private String bucket
        private final String path
    
        S3DirectoryResource(S3Server server, String bucket, TestFile directory) {
            this.bucket = bucket
            this.directory = directory
            this.server = server
            def directoryUri = directory.toURI().toString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top