Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 376 for termination (0.2 sec)

  1. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.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.handleUpstream(ctx, con, xds)
    }
    
    func (p *XdsProxy) buildUpstreamConn(ctx context.Context) (*grpc.ClientConn, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types.go

    	// 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
    	SecretName string `json:"secretName,omitempty" protobuf:"bytes,2,opt,name=secretName"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a bug where hard evictions due to resource pressure would let the pod have the full termination grace period, instead of shutting down instantly. This bug also affected force deleted pods. Both cases now get a termination grace period of 1 second. ([#124063](https://github.com/kubernetes/kubernetes/pull/124063), [@olyazavr](https://github.com/olyazavr)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	DT_FINI_ARRAY   DynTag = 26 /* Address of the array of pointers to termination functions */
    	DT_INIT_ARRAYSZ DynTag = 27 /* Size in bytes of the array of initialization functions. */
    	DT_FINI_ARRAYSZ DynTag = 28 /* Size in bytes of the array of termination functions. */
    	DT_RUNPATH      DynTag = 29 /* String table offset of a null-terminated library search path string. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/types.go

    	// Defaults to 0 seconds.
    	// For example, if ShutdownGracePeriod=30s, and ShutdownGracePeriodCriticalPods=10s, during a node shutdown the first 20 seconds would be reserved for gracefully terminating normal pods, and the last 10 seconds would be reserved for terminating critical pods.
    	// +featureGate=GracefulNodeShutdown
    	// +optional
    	ShutdownGracePeriodCriticalPods metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server.go

    				// We are shutting down already, don't trigger SIGTERM
    				return
    			default:
    				// If the server errors then pilot-agent can never pass readiness or liveness probes
    				// Therefore, trigger graceful termination by sending SIGTERM to the binary pid
    				notifyExit()
    			}
    		}
    	}()
    
    	// Wait for the agent to be shut down.
    	<-ctx.Done()
    	log.Info("Status server has successfully terminated")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  8. pkg/proxy/winkernel/proxier.go

    }
    
    // IsReady returns true if an endpoint is ready and not terminating.
    func (info *endpointInfo) IsReady() bool {
    	return info.ready
    }
    
    // IsServing returns true if an endpoint is ready, regardless of it's terminating state.
    func (info *endpointInfo) IsServing() bool {
    	return info.serving
    }
    
    // IsTerminating returns true if an endpoint is terminating.
    func (info *endpointInfo) IsTerminating() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. src/archive/tar/reader.go

    	if p.err != nil {
    		return nil, p.err
    	}
    	s := blk.toGNU().sparse()
    	spd := make(sparseDatas, 0, s.maxEntries())
    	for {
    		for i := 0; i < s.maxEntries(); i++ {
    			// This termination condition is identical to GNU and BSD tar.
    			if s.entry(i).offset()[0] == 0x00 {
    				break // Don't return, need to process extended headers (even if empty)
    			}
    			offset := p.parseNumeric(s.entry(i).offset())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/test.go

    	// We search breadth-first for two reasons:
    	//
    	// 	1. We want to report the shortest cycle.
    	//
    	// 	2. If p contains multiple cycles, the first cycle we encounter might not
    	// 	   contain target. To ensure termination, we have to break all cycles
    	// 	   other than the first.
    	q := slices.Clip(ptest.Internal.Imports)
    	for len(q) > 0 {
    		p := q[0]
    		q = q[1:]
    		if p == ptest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top