Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 387 for termination (0.24 sec)

  1. pkg/istio-agent/xds_proxy_delta.go

    	ctx = metadata.AppendToOutgoingContext(context.Background(), "ClusterID", p.clusterID)
    	for k, v := range p.xdsHeaders {
    		ctx = metadata.AppendToOutgoingContext(ctx, k, v)
    	}
    	// We must propagate upstream termination to Envoy. This ensures that we resume the full XDS sequence on new connection
    	return p.handleDeltaUpstream(ctx, con, xds)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// If this value is nil, the default grace period will be used instead.
    	// The grace period is the duration in seconds after the processes running in the pod are sent
    	// a termination signal and the time when the processes are forcibly halted with a kill signal.
    	// Set this value longer than the expected cleanup time for your process.
    	// Defaults to 30 seconds.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/runtime/extern.go

    		# MB globals scannable global size, or /gc/scan/globals:bytes
    		# P          number of processors used, or /sched/gomaxprocs:threads
    	The phases are stop-the-world (STW) sweep termination, concurrent
    	mark and scan, and STW mark termination. The CPU times
    	for mark/scan are broken down in to assist time (GC performed in
    	line with allocation), background GC time, and idle GC time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cni/test/install_cni.go

    	// the CNI binary installed.
    	if err := installer.Run(ctx); err != nil {
    		if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {
    			// Error was caused by interrupt/termination signal
    			t.Logf("installer complete: %v", err)
    		} else {
    			t.Errorf("installer failed: %v", err)
    		}
    	}
    
    	if cleanErr := installer.Cleanup(); cleanErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top