Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 228 for Egrave (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    				MinRequestTimeout:           1800,
    				JSONPatchMaxCopyBytes:       10 * 1024 * 1024,
    				MaxRequestBodyBytes:         10 * 1024 * 1024,
    				LivezGracePeriod:            -time.Second,
    			},
    			expectErr: "--livez-grace-period can not be a negative value",
    		},
    		{
    			name: "Test when MinimalShutdownDuration is negative value",
    			testOptions: &ServerRunOptions{
    				AdvertiseAddress:            netutils.ParseIPSloppy("192.168.10.10"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/controller.go

    // resource will be scheduled for removal if the proxy does not reconnect within a grace period.
    //
    // If proxy represents a workload that is not using auto-registration, WorkloadEntry resource
    // will be scheduled to be marked unhealthy if the proxy does not reconnect within a grace period.
    func (c *Controller) OnDisconnect(conn connection) {
    	if c == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue51475.go

    // compile
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gofrontend incorrectly gave an error for this code.
    
    package p
    
    type B bool
    
    func main() {
    	var v B = false
    	if (true && true) && v {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 16:57:18 UTC 2022
    - 314 bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache_test.go

    		},
    		{
    			name:        "grace period .50",
    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.5,
    			expected:    time.Minute * 30,
    		},
    		{
    			name:        "grace period .25",
    			created:     now,
    			expire:      now.Add(time.Hour),
    			gracePeriod: 0.25,
    			expected:    time.Minute * 45,
    		},
    		{
    			name:        "grace period .75",
    			created:     now,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/encoding/ascii85/ascii85_test.go

    			if end > len(input) {
    				end = len(input)
    			}
    			n, err := encoder.Write(input[pos:end])
    			testEqual(t, "Write(%q) gave error %v, want %v", input[pos:end], err, error(nil))
    			testEqual(t, "Write(%q) gave length %v, want %v", input[pos:end], n, end-pos)
    		}
    		err := encoder.Close()
    		testEqual(t, "Close gave error %v, want %v", err, error(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // Value must be non-negative integer. The value zero indicates delete immediately.
      // 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue9862_run.go

    	outstr := string(out)
    	if err == nil {
    		println("go run issue9862.go succeeded, should have failed\n", outstr)
    		return
    	}
    	if !strings.Contains(outstr, "symbol too large") {
    		println("go run issue9862.go gave unexpected error; want symbol too large:\n", outstr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 662 bytes
    - Viewed (0)
  8. docs/fr/docs/python-types.md

    ```
    
    Exécuter ce programe affiche :
    
    ```
    John Doe
    ```
    
    La fonction :
    
    * Prend un `first_name` et un `last_name`.
    * Convertit la première lettre de chaque paramètre en majuscules grâce à `title()`.
    * Concatène les résultats avec un espace entre les deux.
    
    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    ### Limitations
    
    C'est un programme très simple.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. docs/fr/docs/project-generation.md

    * Backend Python <a href="https://github.com/tiangolo/fastapi" class="external-link" target="_blank">**FastAPI**</a> :
        * **Rapide** : Très hautes performances, comparables à **NodeJS** ou **Go** (grâce à Starlette et Pydantic).
        * **Intuitif** : Excellent support des éditeurs. <abbr title="aussi appelée auto-complétion, autocomplétion, IntelliSense...">Complétion</abbr> partout. Moins de temps passé à déboguer.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 02 14:18:06 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/storage_test.go

    }
    
    func validNewPod() *api.Pod {
    	grace := int64(30)
    	enableServiceLinks := v1.DefaultEnableServiceLinks
    	return &api.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: api.PodSpec{
    			RestartPolicy: api.RestartPolicyAlways,
    			DNSPolicy:     api.DNSClusterFirst,
    
    			TerminationGracePeriodSeconds: &grace,
    			Containers: []api.Container{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
Back to top