Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 446 for Terminate (0.16 sec)

  1. pilot/pkg/networking/core/listener_inbound.go

    				UpgradeType:   ConnectUpgradeType,
    				ConnectConfig: &route.RouteAction_UpgradeConfig_ConnectConfig{},
    			}},
    
    			ClusterSpecifier: &route.RouteAction_Cluster{Cluster: MainInternalName},
    		}},
    	}}
    	terminate := lb.buildConnectTerminateListener(routes)
    	// Now we have top level listener... but we must have an internal listener for each standard filter chain
    	// 1 listener per port; that listener will do protocol detection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. licenses/cel.dev/expr/LICENSE

          or a Contribution incorporated within the Work constitutes direct
          or contributory patent infringement, then any patent licenses
          granted to You under this License for that Work shall terminate
          as of the date such litigation is filed.
    
       4. Redistribution. You may reproduce and distribute copies of the
          Work or Derivative Works thereof in any medium, with or without
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	// Failed means to wait until a previously created Pod is fully terminated (has phase
    	// Failed or Succeeded) before creating a replacement Pod.
    	Failed PodReplacementPolicy = "Failed"
    )
    
    // PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
    // a failed pod based on its container exit codes. In particular, it lookups the
    // .state.terminated.exitCode for each app container and init container status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    	//
    	// This field  is alpha-level. To use this field, you must enable the
    	// `JobSuccessPolicy` feature gate (disabled by default).
    	// +optional
    	SuccessPolicy *SuccessPolicy
    
    	// Specifies the duration in seconds relative to the startTime that the job
    	// may be continuously active before the system tries to terminate it; value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// Cancel the watch after some time to check if it will properly
    	// terminate instead of hanging forever.
    	go func() {
    		defer cancel()
    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    	// Ensure that it terminates when its context is cancelled
    	// (e.g. the request is terminated for whatever reason).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/README

    	Otherwise, add the listed key=value pairs to the environment
    	or print the listed keys.
    
    exec program [args...] [&]
    	run an executable program with arguments
    
    	Note that 'exec' does not terminate the script (unlike Unix
    	shells).
    
    exists [-readonly] [-exec] file...
    	check that files exist
    
    
    go [args...] [&]
    	run the 'go' program provided by the script host
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stdlib_test.go

    	if err != nil {
    		return ""
    	}
    	defer f.Close()
    
    	// read at most 4KB
    	var buf [4 << 10]byte
    	n, _ := f.Read(buf[:])
    	src := bytes.NewBuffer(buf[:n])
    
    	// TODO(gri) we need a better way to terminate CommentsDo
    	defer func() {
    		if p := recover(); p != nil {
    			if s, ok := p.(string); ok {
    				first = s
    			}
    		}
    	}()
    
    	syntax.CommentsDo(src, func(_, _ uint, text string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/networking/v1/generated.proto

    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conditions.go

    	})
    }
    
    func generateSupportedKinds(l k8s.Listener) ([]k8s.RouteGroupKind, bool) {
    	supported := []k8s.RouteGroupKind{}
    	switch l.Protocol {
    	case k8s.HTTPProtocolType, k8s.HTTPSProtocolType:
    		// Only terminate allowed, so its always HTTP
    		supported = []k8s.RouteGroupKind{
    			{Group: (*k8s.Group)(ptr.Of(gvk.HTTPRoute.Group)), Kind: k8s.Kind(gvk.HTTPRoute.Kind)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	case terminated != nil:
    		// in cases where the next container didn't start, terminated.ContainerID will be empty, so get logs from the lastState.Terminated.
    		if terminated.ContainerID == "" {
    			if lastState.Terminated != nil && lastState.Terminated.ContainerID != "" {
    				cID = lastState.Terminated.ContainerID
    			} else {
    				return kubecontainer.ContainerID{}, fmt.Errorf("container %q in pod %q is terminated", containerName, podName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top