Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 665 for termination (0.27 sec)

  1. pkg/apis/core/v1/defaults_test.go

    		".Spec.Containers[0].StartupProbe.SuccessThreshold":              "1",
    		".Spec.Containers[0].StartupProbe.TimeoutSeconds":                "1",
    		".Spec.Containers[0].TerminationMessagePath":                     `"/dev/termination-log"`,
    		".Spec.Containers[0].TerminationMessagePolicy":                   `"File"`,
    		".Spec.Containers[0].LivenessProbe.ProbeHandler.GRPC.Service":    `""`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/compress/bzip2/huffman.go

    		if len(codes) < 2 {
    			return 0, StructuralError("empty Huffman tree")
    		}
    
    		// In this case the recursion doesn't always reduce the length
    		// of codes so we need to ensure termination via another
    		// mechanism.
    		if level == 31 {
    			// Since len(codes) >= 2 the only way that the values
    			// can match at all 32 bits is if they are equal, which
    			// is invalid. This ensures that we never enter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/conta...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. pkg/config/gateway/gateway_test.go

    					Name:     "https",
    				},
    				Tls: &v1alpha3.ServerTLSSettings{Mode: v1alpha3.ServerTLSSettings_PASSTHROUGH},
    			},
    			expected: false,
    		},
    		{
    			name: "HTTP traffic with tls termination",
    			server: &v1alpha3.Server{
    				Port: &v1alpha3.Port{
    					Number:   80,
    					Protocol: string(protocol.HTTP),
    					Name:     "http",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 26 05:53:25 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // 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 carp 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. pkg/kubelet/lifecycle/handlers.go

    	if !utilfeature.DefaultFeatureGate.Enabled(features.PodLifecycleSleepAction) {
    		return nil
    	}
    	c := time.After(time.Duration(seconds) * time.Second)
    	select {
    	case <-ctx.Done():
    		// unexpected termination
    		metrics.LifecycleHandlerSleepTerminated.Inc()
    		return fmt.Errorf("container terminated before sleep hook finished")
    	case <-c:
    		return nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// 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"`
    	// TODO: Consider specifying different modes of termination, protocols etc.
    }
    
    // IngressStatus describes the current state of the Ingress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    //  statement from generating an 'unreachable code' warning in case
    //  statement unconditionally returns or throws. The Message constructor at
    //  the end allows the syntax of streaming additional messages into the
    //  macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH.
    # define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \
        GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    			continue
    		}
    		// if no container is found, then assuming it should be waiting seems plausible, but the status code requires
    		// that a previous termination be present.  If we're offline long enough or something removed the container, then
    		// the previous termination may not be present.  This next code block ensures that if the container was previously running
    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