- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,305 for server (0.04 sec)
-
internal/http/server.go
func (srv *Server) UseWriteTimeout(d time.Duration) *Server { srv.WriteTimeout = d return srv } // UseHandler configure final handler for this HTTP *Server func (srv *Server) UseHandler(h http.Handler) *Server { srv.Handler = h return srv } // UseTLSConfig pass configured TLSConfig for this HTTP *Server func (srv *Server) UseTLSConfig(cfg *tls.Config) *Server {
Registered: 2025-05-25 19:28 - Last Modified: 2025-03-30 00:56 - 6.4K bytes - Viewed (0) -
cni/pkg/nodeagent/server.go
return nil, fmt.Errorf("error starting cni server: %w", err) } s.cniServerStopFunc = cniServer.Stop return s, nil } func (s *Server) Ready() { s.isReady.Store(true) } func (s *Server) NotReady() { s.isReady.Store(false) } func (s *Server) Start() { log.Info("CNI ambient server starting") s.kubeClient.RunAndWait(s.ctx.Done()) log.Info("CNI ambient server kubeclient started")
Registered: 2025-05-28 22:53 - Last Modified: 2025-05-06 05:38 - 4.4K bytes - Viewed (0) -
docs/em/docs/deployment/server-workers.md
[19515] [INFO] Booting worker with pid: 19515 [19511] [INFO] Started server process [19511] [19511] [INFO] Waiting for application startup. [19511] [INFO] Application startup complete. [19513] [INFO] Started server process [19513] [19513] [INFO] Waiting for application startup. [19513] [INFO] Application startup complete. [19514] [INFO] Started server process [19514] [19514] [INFO] Waiting for application startup.
Registered: 2025-05-25 07:19 - Last Modified: 2024-08-06 04:48 - 8.2K bytes - Viewed (0) -
docs/es/docs/deployment/server-workers.md
<font color="#4E9A06">INFO</font>: Started server process [<font color="#06989A">27368</font>] <font color="#4E9A06">INFO</font>: Waiting for application startup. <font color="#4E9A06">INFO</font>: Application startup complete. <font color="#4E9A06">INFO</font>: Started server process [<font color="#06989A">27369</font>]
Registered: 2025-05-25 07:19 - Last Modified: 2024-12-30 18:26 - 8.9K bytes - Viewed (0) -
internal/config/server.go
} `yaml:"sftp"` } // ServerConfigVersion struct is used to extract the version type ServerConfigVersion struct { Version string `yaml:"version"` } // ServerConfigCommon struct for server config common options type ServerConfigCommon struct { RootUser string `yaml:"rootUser"` RootPwd string `yaml:"rootPassword"` Addr string `yaml:"address"` ConsoleAddr string `yaml:"console-address"`
Registered: 2025-05-25 19:28 - Last Modified: 2024-05-03 15:54 - 1.9K bytes - Viewed (0) -
cmd/server-main.go
Hidden: true, }, cli.StringFlag{ Name: "log-prefix", Usage: "specify the log prefix name for the server log", EnvVar: "MINIO_LOG_PREFIX", Hidden: true, }, } var serverCmd = cli.Command{ Name: "server", Usage: "start object storage server", Flags: append(ServerFlags, GlobalFlags...), Action: serverMain, CustomHelpTemplate: `NAME: {{.HelpName}} - {{.Usage}}
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-21 16:23 - 35.9K bytes - Viewed (4) -
docs/zh/docs/deployment/server-workers.md
<span style="background-color:#007166"><font color="#D3D7CF"> server </font></span> Server started at <font color="#729FCF"><u style="text-decoration-style:solid">http://0.0.0.0:8000</u></font> <span style="background-color:#007166"><font color="#D3D7CF"> server </font></span> Documentation at <font color="#729FCF"><u style="text-decoration-style:solid">http://0.0.0.0:8000/docs</u></font>
Registered: 2025-05-25 07:19 - Last Modified: 2025-03-31 08:13 - 8K bytes - Viewed (0) -
docs/de/docs/deployment/server-workers.md
[19515] [INFO] Booting worker with pid: 19515 [19511] [INFO] Started server process [19511] [19511] [INFO] Waiting for application startup. [19511] [INFO] Application startup complete. [19513] [INFO] Started server process [19513] [19513] [INFO] Waiting for application startup. [19513] [INFO] Application startup complete. [19514] [INFO] Started server process [19514] [19514] [INFO] Waiting for application startup.
Registered: 2025-05-25 07:19 - Last Modified: 2024-08-06 04:48 - 10.1K bytes - Viewed (0) -
cmd/server-rlimit.go
if _, maxLimit, err = sys.GetMaxOpenFileLimit(); err != nil { return err } if maxLimit < 4096 && runtime.GOOS != globalWindowsOSName { logger.Info("WARNING: maximum file descriptor limit %d is too low for production servers. At least 4096 is recommended. Fix with \"ulimit -n 4096\"", maxLimit) } if err = sys.SetMaxOpenFileLimit(maxLimit, maxLimit); err != nil { return err } _, vssLimit, err := sys.GetMaxMemoryLimit()
Registered: 2025-05-25 19:28 - Last Modified: 2024-07-02 15:09 - 2.8K bytes - Viewed (0) -
cmd/ftp-server.go
} name := "MinIO FTP Server" if tls { name = "MinIO FTP(Secure) Server" } ftpServer, err := ftp.NewServer(&ftp.Options{ Name: name, WelcomeMessage: fmt.Sprintf("Welcome to '%s' FTP Server Version='%s' License='%s'", MinioStoreName, MinioLicense, Version), Driver: NewFTPDriver(),
Registered: 2025-05-25 19:28 - Last Modified: 2025-05-09 20:10 - 5.3K bytes - Viewed (0)