Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 163 for Egrave (0.54 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	if probe != nil && probe.TerminationGracePeriodSeconds != nil {
    		if *probe.TerminationGracePeriodSeconds > *pod.Spec.TerminationGracePeriodSeconds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    		syncPodRecords := processed[uid]
    		var match bool
    		grace := int64(30)
    		for _, possible := range [][]syncPodRecord{
    			{{name: string(uid), updateType: kubetypes.SyncPodKill, gracePeriod: &grace}, {name: string(uid), terminated: true}},
    			{{name: string(uid), updateType: kubetypes.SyncPodCreate}, {name: string(uid), updateType: kubetypes.SyncPodKill, gracePeriod: &grace}, {name: string(uid), terminated: true}},
    		} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/plugins/GroovyBasePlugin.java

                groovyCompile.getJavaLauncher().convention(getJavaLauncher(project));
    
                groovyCompile.getGroovyOptions().getDisabledGlobalASTTransformations().convention(Sets.newHashSet("groovy.grape.GrabAnnotationTransformation"));
            });
            JvmPluginsHelper.configureOutputDirectoryForSourceSet(sourceSet, groovySource, project, compileTask, compileTask.map(GroovyCompile::getOptions));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kubelet/eviction/helpers.go

    	if err != nil {
    		return nil, err
    	}
    	for i := range softThresholds {
    		signal := softThresholds[i].Signal
    		period, found := gracePeriods[signal]
    		if !found {
    			return nil, fmt.Errorf("grace period must be specified for the soft eviction threshold %v", signal)
    		}
    		softThresholds[i].GracePeriod = period
    	}
    	results = append(results, softThresholds...)
    	for i := range results {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. pkg/api/testing/serialization_test.go

    }
    
    // TestEncodePtr tests that a pointer to a golang type can be encoded and
    // decoded without information loss or mutation.
    func TestEncodePtr(t *testing.T) {
    	grace := int64(30)
    	enableServiceLinks := v1.DefaultEnableServiceLinks
    	preemptNever := api.PreemptNever
    	pod := &api.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Labels: map[string]string{"name": "foo"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/options.go

    	fs.Var(cliflag.NewMapStringString(&c.EvictionSoftGracePeriod), "eviction-soft-grace-period", "A set of eviction grace periods (e.g. memory.available=1m30s) that correspond to how long a soft eviction threshold must hold before triggering a pod eviction.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    				parameters := testResourceClaimParameters(goodName, goodName, goodRequests)
    				parameters.CreationTimestamp = now
    				return parameters
    			}(),
    		},
    		"deletion-grace-period-seconds": {
    			parameters: func() *resource.ResourceClaimParameters {
    				parameters := testResourceClaimParameters(goodName, goodName, goodRequests)
    				parameters.DeletionGracePeriodSeconds = ptr.To[int64](10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// track of active watch request(s) in flight and will not wait
    	// for them to drain, this maintains backward compatibility.
    	// This grace period is orthogonal to other grace periods, and
    	// it is not overridden by any other grace period.
    	ShutdownWatchTerminationGracePeriod time.Duration
    }
    
    type RecommendedConfig struct {
    	Config
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top