Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for serverConfig (0.16 sec)

  1. tests/integration/security/ca_custom_root/main_test.go

    			},
    		},
    		TLSSettings: &common.TLSSettings{
    			RootCert:      rootCertAlt,
    			ClientCert:    clientCertAlt,
    			Key:           keyAlt,
    			AcceptAnyALPN: true,
    		},
    	}
    
    	serverConfig := echo.Config{
    		Subsets:        []echo.SubsetConfig{{}},
    		Namespace:      customNs.Get(),
    		Service:        "server",
    		ServiceAccount: true,
    		Ports: []echo.Port{
    			{
    				Name:         httpPlaintext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. cni/test/install_cni.go

    }
    
    // create an install server instance and run it, blocking until it gets terminated
    // via context cancellation
    func startInstallServer(ctx context.Context, serverConfig *config.Config, t *testing.T) {
    	readyFlag := &atomic.Value{}
    	installer := install.NewInstaller(&serverConfig.InstallConfig, readyFlag)
    
    	t.Logf("CNI installer created, watching...")
    	// installer.Run() will block indefinitely, and attempt to permanently "keep"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    		}
    	}
    
    	// An SSH server is represented by a ServerConfig, which holds
    	// certificate details and handles authentication of ServerConns.
    	sshConfig := &ssh.ServerConfig{
    		Config: ssh.Config{
    			KeyExchanges: allowKexAlgos,
    			Ciphers:      allowCiphers,
    			MACs:         allowMACs,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_test.go

    			panic("failed to open -keylog file: " + err.Error())
    		}
    		testConfig.KeyLogWriter = f
    		defer f.Close()
    	}
    
    	return m.Run()
    }
    
    func testHandshake(t *testing.T, clientConfig, serverConfig *Config) (serverState, clientState ConnectionState, err error) {
    	const sentinel = "SENTINEL\n"
    	c, s := localPipe(t)
    	errChan := make(chan error, 1)
    	go func() {
    		cli := Client(c, clientConfig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. cmd/server-main.go

    		for _, list := range cfV1.Pools {
    			pools = append(pools, poolArgs{
    				args:          list,
    				setDriveCount: setDriveCount,
    			})
    		}
    	case "v2":
    		cf := config.ServerConfig{}
    		cfReader.Seek(0, io.SeekStart)
    		if err = yaml.Unmarshal(rd, &cf); err != nil {
    			return err
    		}
    
    		pools = make([]poolArgs, 0, len(cf.Pools))
    		for _, list := range cf.Pools {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  6. test-site/activator-launch-1.3.2.jar

    logging; private final scala.collection.immutable.List appProperties; private final scala.Option serverConfig; public final scala.Serializable scalaVersion$33e6f9b0(); public final IvyOptions ivyConfiguration(); public final Application app(); public final BootSetup boot(); public final Logging logging(); public final scala.collection.immutable.List appProperties(); public final scala.Option serverConfig(); public final scala.Option getScalaVersion(); public final LaunchConfiguration withVersions(String,...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top