Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for Egrave (1.32 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/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 carp 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.7K bytes
    - Viewed (0)
  2. src/cmd/go/scriptcmds_test.go

    	"strings"
    	"sync"
    	"time"
    )
    
    func scriptCommands(interrupt os.Signal, waitDelay time.Duration) map[string]script.Cmd {
    	cmds := scripttest.DefaultCmds()
    
    	// Customize the "exec" interrupt signal and grace period.
    	var cancel func(cmd *exec.Cmd) error
    	if interrupt != nil {
    		cancel = func(cmd *exec.Cmd) error {
    			return cmd.Process.Signal(interrupt)
    		}
    	}
    
    	cmdExec := script.Exec(cancel, waitDelay)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 18:33:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// 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: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. security/pkg/credentialfetcher/plugin/gce.go

    	// When fails to get expiration time from token, always refresh the token.
    	if err != nil || exp.IsZero() {
    		return true
    	}
    	rotate := now.After(exp.Add(-gracePeriod))
    	gcecredLog.Debugf("credential expiration: %s, grace period: %s, should rotate: %t",
    		exp.String(), gracePeriod.String(), rotate)
    	return rotate
    }
    
    // GetPlatformCredential fetches the GCE VM identity jwt token from its metadata server,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/configuration/configuration_manager.go

    	// comes first.
    	bootstrapped bool
    	// configuration() retries bootstrapRetries times if poller is not bootstrapped
    	// read-only
    	bootstrapRetries int
    	// Grace period for bootstrapping
    	// read-only
    	bootstrapGracePeriod time.Duration
    	once                 sync.Once
    	// if the configuration is regarded as ready.
    	ready               bool
    	mergedConfiguration runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 02:02:38 UTC 2017
    - 4.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup.go

    		countNow = wg.count
    		wg.wait = true
    	}()
    
    	defer cancel()
    	// there should be a hard stop, in case request(s) are not responsive
    	// enough to invoke Done before the grace period is over.
    	waitDoneCh := make(chan struct{})
    	go func() {
    		defer close(waitDoneCh)
    		wg.wg.Wait()
    	}()
    
    	var err error
    	select {
    	case <-wg.stopCtx.Done():
    		err = wg.stopCtx.Err()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/testing/helper_test.go

    	// of the log, five lines of "parallel" logging,
    	// and a final "FAIL" line at the end of the test.
    	const wantLines = 7
    
    	if len(lines) != wantLines {
    		t.Fatalf("parallelTestHelper gave %d lines of output; want %d", len(lines), wantLines)
    	}
    	want := "helperfuncs_test.go:24: parallel"
    	if got := strings.TrimSpace(lines[1]); got != want {
    		t.Errorf("got second output line %q; want %q", got, want)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/query-params.md

    !!! note
        **FastAPI** saura que `q` est optionnel grâce au `=None`.
    
        Le `Optional` dans `Optional[str]` n'est pas utilisé par **FastAPI** (**FastAPI** n'en utilisera que la partie `str`), mais il servira tout de même à votre éditeur de texte pour détecter des erreurs dans votre code.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. samples/addons/README.md

    The deployments here are meant to quickly get up and running, and are optimized for this case. As a result,
    they may not be suitable for production. See below for more info on integrating a production grade version of each
    addon.
    
    ## Getting started
    
    To quickly deploy all addons:
    
    ```shell script
    kubectl apply -f samples/addons
    ```
    
    Alternatively, you can deploy individual addons:
    
    ```shell script
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceslice_test.go

    		},
    		"creation-timestamp": {
    			slice: func() *resource.ResourceSlice {
    				slice := testResourceSlice(goodName, goodName, driverName)
    				slice.CreationTimestamp = now
    				return slice
    			}(),
    		},
    		"deletion-grace-period-seconds": {
    			slice: func() *resource.ResourceSlice {
    				slice := testResourceSlice(goodName, goodName, driverName)
    				slice.DeletionGracePeriodSeconds = ptr.To[int64](10)
    				return slice
    			}(),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top