Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 228 for Egrave (0.4 sec)

  1. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    		phase := pod.Status.Phase
    		if v1.PodSucceeded == phase || v1.PodFailed == phase {
    			continue
    		}
    		if pod.Spec.TerminationGracePeriodSeconds != nil {
    			grace := *pod.Spec.TerminationGracePeriodSeconds
    			if grace > estimate {
    				estimate = grace
    			}
    		}
    	}
    	return estimate, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. src/compress/gzip/gunzip_test.go

    			"resting place for those who here gave their lives that that\n" +
    			"nation might live.  It is altogether fitting and proper that\n" +
    			"we should do this.\n" +
    			"  But, in a larger sense, we can not dedicate — we can not\n" +
    			"consecrate — we can not hallow — this ground.\n" +
    			"  The brave men, living and dead, who struggled here, have\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K 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. docs/fr/docs/index.md

    * Intégration de **GraphQL** avec <a href="https://strawberry.rocks" class="external-link" target="_blank">Strawberry</a> et d'autres bibliothèques.
    * D'obtenir de nombreuses fonctionnalités supplémentaires (grâce à  Starlette) comme :
        * **WebSockets**
        * de tester le code très facilement avec `requests` et `pytest`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                  @Model
                  void group(Group group) {
                    group.name = "Women in computing"
    
                    group.members.create { name = "Ada Lovelace" }
                    group.members.create { name = "Grace Hooper" }
    
                    assert group.members.is(group.members)
                  }
                }
    
                apply type: Rules
    
                model {
                  tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. pkg/kubelet/config/file_linux_test.go

    	}
    }
    
    type testCase struct {
    	lock     *sync.Mutex
    	desc     string
    	pod      runtime.Object
    	expected kubetypes.PodUpdate
    }
    
    func getTestCases(hostname types.NodeName) []*testCase {
    	grace := int64(30)
    	enableServiceLinks := v1.DefaultEnableServiceLinks
    	return []*testCase{
    		{
    			lock: &sync.Mutex{},
    			desc: "Simple pod",
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/certcontroller.go

    	"istio.io/istio/security/pkg/k8s/chiron"
    	"istio.io/istio/security/pkg/pki/ca"
    	certutil "istio.io/istio/security/pkg/util"
    )
    
    const (
    	// defaultCertGracePeriodRatio is the default length of certificate rotation grace period,
    	// configured as the ratio of the certificate TTL.
    	defaultCertGracePeriodRatio = 0.5
    
    	// the interval polling root cert and resign istiod cert when it changes.
    	rootCertPollingInterval = 60 * time.Second
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top