Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 387 for termination (0.18 sec)

  1. cni/pkg/install/install.go

    		// Valid configuration; set isReady to true and wait for modifications before checking again
    		setReady(in.isReady)
    		cniInstalls.With(resultLabel.Value(resultSuccess)).Increment()
    		// Pod set to "NotReady" before termination
    		return watcher.Wait(ctx)
    	}
    }
    
    // checkValidCNIConfig returns an error if an invalid CNI configuration is detected
    func checkValidCNIConfig(cfg *config.InstallConfig, cniConfigFilepath string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

      // No implementation - assignment is unsupported.
      void operator=(const ExitedWithCode& other);
    
      const int exit_code_;
    };
    
    # if !GTEST_OS_WINDOWS
    // Tests that an exit code describes an exit due to termination by a
    // given signal.
    class GTEST_API_ KilledBySignal {
     public:
      explicit KilledBySignal(int signum);
      bool operator()(int exit_status) const;
     private:
      const int signum_;
    };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. docs/ja/docs/deployment/concepts.md

    [前チャプターのHTTPSについて](https.md){.internal-link target=_blank}では、HTTPSがどのようにAPIを暗号化するのかについて学びました。
    
    通常、アプリケーションサーバにとって**外部の**コンポーネントである**TLS Termination Proxy**によって提供されることが一般的です。このプロキシは通信の暗号化を担当します。
    
    さらにセキュアな通信において、HTTPS証明書の定期的な更新を行いますが、これはTLS Termination Proxyと同じコンポーネントが担当することもあれば、別のコンポーネントが担当することもあります。
    
    ### HTTPS 用ツールの例
    TLS Termination Proxyとして使用できるツールには以下のようなものがあります:
    
    * Traefik
        * 証明書の更新を自動的に処理 ✨
    * Caddy
        * 証明書の更新を自動的に処理 ✨
    * Nginx
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    message ContainerStateTerminated {
      // Exit status from the last termination of the container
      optional int32 exitCode = 1;
    
      // Signal from the last termination of the container
      // +optional
      optional int32 signal = 2;
    
      // (brief) reason from the last termination of the container
      // +optional
      optional string reason = 3;
    
      // Message regarding the last termination of the container
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"exitCode":    "Exit status from the last termination of the container",
    	"signal":      "Signal from the last termination of the container",
    	"reason":      "(brief) reason from the last termination of the container",
    	"message":     "Message regarding the last termination of the container",
    	"startedAt":   "Time at which previous execution of the container started",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    		for _, server := range serversForPort.Servers {
    			if gateway.IsHTTPSServerWithTLSTermination(server) {
    				routeName := mergedGateway.TLSServerInfo[server].RouteName
    				// This is a HTTPS server, where we are doing TLS termination. Build a http connection manager with TLS context
    				httpFilterChainOpts := configgen.createGatewayHTTPFilterChainOpts(builder.node, server.Port, server,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. src/runtime/iface.go

    		if e.Typ != 0 {
    			n++
    		}
    	}
    
    	// Figure out how big a table we need.
    	// We need at least one more slot than the number of entries
    	// so that we are guaranteed an empty slot (for termination).
    	newN := n * 2                         // make it at most 50% full
    	newN = 1 << sys.Len64(uint64(newN-1)) // round up to a power of 2
    
    	// Allocate the new table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    	// local DNS Server that processes DNS requests locally and forwards to upstream DNS if needed.
    	localDNSServer *dnsClient.LocalDNSServer
    
    	// Signals true completion (e.g. with delayed graceful termination of Envoy)
    	wg sync.WaitGroup
    }
    
    // AgentOptions contains additional config for the agent, not included in ProxyConfig.
    // Most are from env variables ( still experimental ) or for testing only.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check.go

    	sig           *Signature                // function signature if inside a function; nil otherwise
    	isPanic       map[*syntax.CallExpr]bool // set of panic call expressions (used for termination check)
    	hasLabel      bool                      // set if a function makes use of labels (only ~1% of functions); unused outside functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/html/template/js.go

    		// prevent the error from either terminating the comment, or the script
    		// block itself.
    		//
    		// In particular we:
    		//   * replace "*/" comment end tokens with "* /", which does not
    		//     terminate the comment
    		//   * replace "</script" with "\x3C/script", and "<!--" with
    		//     "\x3C!--", which prevents confusing script block termination
    		//     semantics
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top