Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 232 for Ttl (0.03 sec)

  1. pkg/controller/ttlafterfinished/config/types.go

    */
    
    package config
    
    // TTLAfterFinishedControllerConfiguration contains elements describing TTLAfterFinishedController.
    type TTLAfterFinishedControllerConfiguration struct {
    	// concurrentTTLSyncs is the number of TTL-after-finished collector workers that are
    	// allowed to sync concurrently.
    	ConcurrentTTLSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 889 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/dryrun.go

    }
    
    func (s *DryRunnableStorage) Create(ctx context.Context, key string, obj, out runtime.Object, ttl uint64, dryRun bool) error {
    	if dryRun {
    		if err := s.Storage.Get(ctx, key, storage.GetOptions{}, out); err == nil {
    			return storage.NewKeyExistsError(key, 0)
    		}
    		return s.copyInto(obj, out)
    	}
    	return s.Storage.Create(ctx, key, obj, out, ttl)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 20:40:48 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

                // Older daemon don't have configurable ttl and they hung for 3 hours afterwards.
                // This is a real problem on windows due to eager file locking and continuous CI failures.
                // On linux it's a lesser problem - long-lived daemons hung and steal resources but don't lock files.
                // So, for windows we'll only run tests against target gradle that supports ttl
                return false
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pkg/controller/certificates/signer/signer.go

    	if err != nil {
    		return nil, err
    	}
    	der, err := currCA.Sign(x509cr.Raw, authority.PermissiveSigningPolicy{
    		TTL:      s.duration(expirationSeconds),
    		Usages:   usages,
    		Backdate: 5 * time.Minute, // this must always be less than the minimum TTL requested by a user (see sanity check requestedDuration below)
    		Short:    8 * time.Hour,   // 5 minutes of backdating is roughly 1% of 8 hours
    		Now:      now,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	received time.Time
    }
    
    type kmsPluginProbe struct {
    	name         string
    	ttl          time.Duration
    	service      envelope.Service
    	lastResponse *kmsPluginHealthzResponse
    	l            *sync.Mutex
    }
    
    type kmsv2PluginProbe struct {
    	state        atomic.Pointer[envelopekmsv2.State]
    	name         string
    	ttl          time.Duration
    	service      kmsservice.Service
    	lastResponse *kmsPluginHealthzResponse
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/cache.go

    // It automatically starts a go routine that manages expiration of assumed pods.
    // "ttl" is how long the assumed pod will get expired.
    // "ctx" is the context that would close the background goroutine.
    func New(ctx context.Context, ttl time.Duration) Cache {
    	logger := klog.FromContext(ctx)
    	cache := newCache(ctx, ttl, cleanAssumedPeriod)
    	cache.run(logger)
    	return cache
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  7. pkg/fieldpath/fieldpath_test.go

    		"management.cattle.io/pod-limits":                        `{"cpu":"11400m","memory":"7965Mi"}`,
    		"management.cattle.io/pod-requests":                      `{"cpu":"2482m","memory":"7984Mi","pods":"26"}`,
    		"node.alpha.kubernetes.io/ttl":                           "0",
    		"volumes.kubernetes.io/controller-managed-attach-detach": "true",
    	}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		s = FormatMap(m)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/names/controller_names.go

    	CertificateSigningRequestCleanerController   = "certificatesigningrequest-cleaner-controller"
    	TTLController                                = "ttl-controller"
    	BootstrapSignerController                    = "bootstrap-signer-controller"
    	TokenCleanerController                       = "token-cleaner-controller"
    	NodeIpamController                           = "node-ipam-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// occurred due to server lag - we will ensure that the value is at least
    	// set.
    	if defaultTTL < 0 {
    		defaultTTL = 1
    	}
    	ttl = uint64(defaultTTL)
    	if e.TTLFunc != nil {
    		ttl, err = e.TTLFunc(obj, ttl, update)
    	}
    	return ttl, err
    }
    
    // CompleteWithOptions updates the store with the provided options and
    // defaults common fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns_test.go

               upstream
               fallthrough in-addr.arpa ip6.arpa
               ttl 30
            }
            health
        }
    `,
    			expectedCorefileData: `.:53 {
        errors
        health {
           lameduck 5s
        }
        ready
        kubernetes cluster.local in-addr.arpa ip6.arpa {
           pods insecure
           fallthrough in-addr.arpa ip6.arpa
           ttl 30
        }
        prometheus :9153
        forward . /etc/resolv.conf {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top