Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 228 for Egrave (0.19 sec)

  1. hack/lib/test.sh

        # shellcheck disable=SC2154
        # Disabling because "kube_flags" is set in a parent script
        kubectl delete "${kube_flags[@]}" rc --all --grace-period=0 --force
      fi
      if kube::test::if_supports_resource "pods" ; then
        kubectl delete "${kube_flags[@]}" pods --all --grace-period=0 --force
      fi
    }
    
    # Prints the calling file and line number $1 levels deep
    # Defaults to 2 levels so you can call this to find your own caller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/cmd/pilot-agent/options/options.go

    		"The duration for which the file read operation is delayed once file update is detected").Get()
    
    	secretRotationGracePeriodRatioEnv = env.Register("SECRET_GRACE_PERIOD_RATIO", 0.5,
    		"The grace period ratio for the cert rotation, by default 0.5.").Get()
    	workloadRSAKeySizeEnv = env.Register("WORKLOAD_RSA_KEY_SIZE", 2048,
    		"Specify the RSA key size to use for workload certificates.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/SocksProxy.kt

      }
    
      fun connectionCount(): Int = connectionCount.get()
    
      fun shutdown() {
        serverSocket!!.close()
        executor.shutdown()
        if (!executor.awaitTermination(5, TimeUnit.SECONDS)) {
          throw IOException("Gave up waiting for executor to shut down")
        }
      }
    
      private fun service(from: Socket) {
        val name = "SocksProxy ${from.remoteSocketAddress}"
        threadName(name) {
          try {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    				schedulingCtx := testPodSchedulingContexts(goodName, goodNS, goodPodSchedulingSpec)
    				schedulingCtx.CreationTimestamp = now
    				return schedulingCtx
    			}(),
    		},
    		"deletion-grace-period-seconds": {
    			schedulingCtx: func() *resource.PodSchedulingContext {
    				schedulingCtx := testPodSchedulingContexts(goodName, goodNS, goodPodSchedulingSpec)
    				schedulingCtx.DeletionGracePeriodSeconds = pointer.Int64(10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.CreationTimestamp = now
    				return template
    			}(),
    		},
    		"deletion-grace-period-seconds": {
    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.DeletionGracePeriodSeconds = pointer.Int64(10)
    				return template
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top