Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 387 for termination (0.23 sec)

  1. pkg/apis/core/types.go

    	// container crashes or exits. The Pod's termination grace period countdown begins before the
    	// PreStop hook is executed. Regardless of the outcome of the handler, the
    	// container will eventually terminate within the Pod's termination grace
    	// period (unless delayed by finalizers). Other management of the container blocks until the hook completes
    	// or until the termination grace period is reached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    func (noSuppressPanicError) Write(p []byte) (n int, err error) {
    	// skip "suppressing panic for copyResponse error in test; copy error" error message
    	// that ends up in CI tests on each kube-apiserver termination as noise and
    	// everybody thinks this is fatal.
    	if strings.Contains(string(p), "suppressing panic") {
    		return len(p), nil
    	}
    	return os.Stderr.Write(p)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/runtime/mfinal.go

    	if gcphase != _GCoff {
    		// Currently we assume that the finalizer queue won't
    		// grow during marking so we don't have to rescan it
    		// during mark termination. If we ever need to lift
    		// this assumption, we can do it by adding the
    		// necessary barriers to queuefinalizer (which it may
    		// have automatically).
    		throw("queuefinalizer during GC")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    	mkTree = func(level int) *node {
    		if level == 0 {
    			return nil
    		}
    		n := &node{mkTree(level - 1), mkTree(level - 1)}
    		if level == 10 {
    			// Seed GC with enough early pointers so it
    			// doesn't start termination barriers when it
    			// only has the top of the tree.
    			wbRoots = append(wbRoots, n)
    		}
    		return n
    	}
    	const depth = 22 // 64 MB
    	root := mkTree(22)
    
    	writeBarrierBenchmark(b, func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	// that is scannable.
    	globalsScan atomic.Uint64
    
    	// heapMarked is the number of bytes marked by the previous
    	// GC. After mark termination, heapLive == heapMarked, but
    	// unlike heapLive, heapMarked does not change until the
    	// next mark termination.
    	heapMarked uint64
    
    	// heapScanWork is the total heap scan work performed this cycle.
    	// stackScanWork is the total stack scan work performed this cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/deadcode.go

    				// We unset the reachable bit here, so if the child type is already visited,
    				// it will be visited again.
    				// Note that a type symbol can be visited at most twice, one without
    				// UsedInIface and one with. So termination is still guaranteed.
    				d.ldr.SetAttrUsedInIface(rs, true)
    				d.ldr.SetAttrReachable(rs, false)
    			}
    			d.mark(rs, symIdx)
    		}
    		naux := d.ldr.NAux(symIdx)
    		for i := 0; i < naux; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    //
    // HTTPS servers with TLS termination (i.e. envoy decoding the content, and making outbound http calls to backends)
    // will use route name https.<portNumber>.<portName>.<gatewayName>.<namespace>. HTTPS servers using SNI passthrough or
    // non-HTTPS servers (e.g., TCP+TLS) with SNI passthrough will be setup as opaque TCP proxies without terminating
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pkg/quota/v1/evaluator/core/pods_test.go

    		}
    	}
    }
    
    func TestPodEvaluatorUsage(t *testing.T) {
    	fakeClock := testingclock.NewFakeClock(time.Now())
    	evaluator := NewPodEvaluator(nil, fakeClock)
    
    	// fields use to simulate a pod undergoing termination
    	// note: we set the deletion time in the past
    	now := fakeClock.Now()
    	terminationGracePeriodSeconds := int64(30)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/generated.proto

      // port 443. Field is left optional to allow TLS routing based on SNI
      // hostname alone. If the SNI host in a listener conflicts with the "Host"
      // header field used by an IngressRule, the SNI host is used for termination
      // and value of the "Host" header is used for routing.
      // +optional
      optional string secretName = 2;
    }
    
    // NetworkPolicy describes what network traffic is allowed for a set of Pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	if err != nil {
    		return err
    	}
    	var terminating *int32
    	if feature.DefaultFeatureGate.Enabled(features.JobPodReplacementPolicy) {
    		terminating = ptr.To(controller.CountTerminatingPods(pods))
    	}
    	jobCtx := &syncJobCtx{
    		job:                  &job,
    		pods:                 pods,
    		activePods:           controller.FilterActivePods(logger, pods),
    		terminating:          terminating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top