Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 376 for termination (0.17 sec)

  1. pkg/kubelet/kubelet.go

    	apiPodStatus = kl.generateAPIPodStatus(pod, podStatus, true)
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    	// we have successfully stopped all containers, the pod is terminating, our status is "done"
    	klog.V(4).InfoS("Pod termination stopped all running containers", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Files.java

        asByteSource(from).copyTo(to);
      }
    
      /**
       * Copies all the bytes from one file to another.
       *
       * <p>Copying is not an atomic operation - in the case of an I/O error, power loss, process
       * termination, or other problems, {@code to} may not be a complete copy of {@code from}. If you
       * need to guard against those conditions, you should employ other file-level synchronization.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. docs/ja/docs/deployment/docker.md

    コンテナを使用する場合、通常はメイン・ポート**でリスニング**しているコンポーネントがあるはずです。それはおそらく、**HTTPS**を処理するための**TLS Termination Proxy**でもある別のコンテナであったり、同様のツールであったりするでしょう。
    
    このコンポーネントはリクエストの **負荷** を受け、 (うまくいけば) その負荷を**バランスよく** ワーカーに分配するので、一般に **ロードバランサ** とも呼ばれます。
    
    !!! tip
      HTTPSに使われるものと同じ**TLS Termination Proxy**コンポーネントは、おそらく**ロードバランサー**にもなるでしょう。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. src/go/types/check.go

    	sig           *Signature             // function signature if inside a function; nil otherwise
    	isPanic       map[*ast.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.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tests/integration/security/sds_ingress/ingress_test.go

    // Verifies behavior in these scenarios.
    // (1) A valid kubernetes secret with key/cert and client CA cert is added, verifies that SSL connection
    // termination is working properly. This secret is a compound secret.
    // (2) After key/cert rotation, client needs to pick new CA cert to complete SSL connection. Old CA
    // cert will cause the SSL connection fail.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/runtime/mcache.go

    	// nil if there is no current tiny block.
    	//
    	// tiny is a heap pointer. Since mcache is in non-GC'd memory,
    	// we handle it by clearing it in releaseAll during mark
    	// termination.
    	//
    	// tinyAllocs is the number of tiny allocations performed
    	// by the P that owns this mcache.
    	tiny       uintptr
    	tinyoffset uintptr
    	tinyAllocs uintptr
    
    	// The rest is not accessed on every malloc.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top