Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,298 for startCA (0.27 sec)

  1. pilot/pkg/bootstrap/server.go

    		return false
    	}
    
    	return true
    }
    
    // StartCA starts the CA or RA server if configured.
    func (s *Server) startCA(caOpts *caOptions) {
    	if s.CA == nil && s.RA == nil {
    		return
    	}
    	// init the RA server if configured, else start init CA server
    	if s.RA != nil {
    		log.Infof("initializing CA server with RA")
    		s.initCAServer(s.RA, caOpts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. 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.
    [19514] [INFO] Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. pkg/test/echo/docker/echo-start.sh

    ECHO_ARGS=${ECHO_ARGS:-}
    # Split ECHO_ARGS by spaces.
    IFS=' ' read -r -a ECHO_ARGS_ARRAY <<< "$ECHO_ARGS"
    
    ISTIO_LOG_DIR=${ISTIO_LOG_DIR:-/var/log/istio}
    
    # Run the pilot agent and Envoy
    /usr/local/bin/istio-start.sh&
    
    # Start the echo server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:04:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. tools/packaging/common/istio-start.sh

    "
    fi
    
    # PROXY_CONFIG > PILOT_ADDRESS > ISTIO_PILOT_PORT
    export PROXY_CONFIG=${PROXY_CONFIG:-${DEFAULT_PROXY_CONFIG}}
    
    if [ "${EXEC_USER}" == "${USER:-}" ] ; then
      # if started as istio-proxy (or current user), do a normal start, without
      # redirecting stderr.
      INSTANCE_IP=${ISTIO_SVC_IP} POD_NAME=${POD_NAME} POD_NAMESPACE=${NS} "${ISTIO_BIN_BASE}/pilot-agent" proxy "${ISTIO_AGENT_FLAGS_ARRAY[@]}"
    else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/start.go

    // first running goroutine in the traceback.
    //
    // If either of these flags is set, Start re-executes the current
    // executable as a child process, in a special mode in which it
    // acts as a telemetry sidecar for the parent process (the application).
    // In that mode, the call to Start will never return, so Start must
    // be called immediately within main, even before such things as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. releasenotes/notes/agent-startup.yaml

    John Howard <******@****.***> 1602717289 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 14 23:14:49 UTC 2020
    - 183 bytes
    - Viewed (0)
  7. docs/zh/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.
    [19514] [INFO] Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/internal/diff/testdata/start.txt

    Russ Cox <******@****.***> 1643490792 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 142 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WaitAtEndOfBuildFixture.groovy

            if (gradleVersion < SUPPORTS_BUILD_SERVICES) {
                return """
                    def startAt = System.nanoTime()
                    gradle.buildFinished {
                        long sinceStart = (System.nanoTime() - startAt) / 1000000L
                        if (sinceStart > 0 && sinceStart < $minimumBuildTimeMillis) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. cmd/server-startup-msg.go

    	formatStr := fmt.Sprintf("%ds", strLen+padding)
    	return "%" + formatStr
    }
    
    // Prints the formatted startup message.
    func printStartupMessage(apiEndpoints []string, err error) {
    	logger.Info(color.Bold(MinioBannerName))
    	if err != nil {
    		if globalConsoleSys != nil {
    			globalConsoleSys.Send(GlobalContext, fmt.Sprintf("Server startup failed with '%v', some features may be missing", err))
    		}
    	}
    
    	if !globalSubnetConfig.Registered() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top