Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 232 for Ttl (0.05 sec)

  1. pilot/pkg/model/network_test.go

    					Hdr: dns.RR_Header{Name: domain, Rrtype: dns.TypeA, Class: dns.ClassINET, Ttl: s.ttl},
    					A:   net.ParseIP(fmt.Sprintf("10.0.0.%d", c)),
    				})
    			case dns.TypeAAAA:
    				// set a long TTL for AAAA
    				msg.Answer = append(msg.Answer, &dns.AAAA{
    					Hdr:  dns.RR_Header{Name: domain, Rrtype: dns.TypeAAAA, Class: dns.ClassINET, Ttl: s.ttl * 10},
    					AAAA: net.ParseIP(fmt.Sprintf("fd00::%x", c)),
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/dfs/Referral.java

        }
    
    
        /**
         * @return the altPath
         */
        public final String getAltPath () {
            return this.altPath;
        }
    
    
        /**
         * @return the ttl
         */
        public final int getTtl () {
            return this.ttl;
        }
    
    
        /**
         * @return the rpath
         */
        public final String getRpath () {
            return this.rpath;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/bootstraptoken/v1/types.go

    	// +optional
    	Description string `json:"description,omitempty"`
    	// TTL defines the time to live for this token. Defaults to 24h.
    	// Expires and TTL are mutually exclusive.
    	// +optional
    	TTL *metav1.Duration `json:"ttl,omitempty"`
    	// Expires specifies the timestamp when this token expires. Defaults to being set
    	// dynamically at runtime based on the TTL. Expires and TTL are mutually exclusive.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 01 21:11:49 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/network.go

    	entry, ok := n.cache[name]
    	if ok {
    		entry.timer.Stop()
    	}
    	delete(n.cache, name)
    	addrs, ttl, err := n.resolve(name)
    	// avoid excessive pushes due to small TTL
    	if ttl < MinGatewayTTL {
    		ttl = MinGatewayTTL
    	}
    	expiry := time.Now().Add(ttl)
    	if err != nil {
    		// gracefully retain old addresses in case the DNS server is unavailable
    		addrs = entry.value
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. pkg/controller/certificates/authority/policies.go

    //     Long-lived certificates set NotAfter = Now() + TTL - Backdate.
    //     Short-lived certificates set NotAfter = Now() + TTL.
    //     All certificates truncate NotAfter to the expiration date of the signer.
    type PermissiveSigningPolicy struct {
    	// TTL is used in certificate NotAfter calculation as described above.
    	TTL time.Duration
    
    	// Usages are the allowed usages of a certificate.
    	Usages []capi.KeyUsage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache.go

    	"k8s.io/utils/clock"
    )
    
    type simpleCache struct {
    	cache *utilcache.Expiring
    	ttl   time.Duration
    }
    
    func newSimpleCache(clock clock.Clock, ttl time.Duration) *simpleCache {
    	cache := utilcache.NewExpiringWithClock(clock)
    	// "Stale" entries are always valid for us because the TTL is just used to prevent
    	// unbounded growth on the cache - for a given info the transformer is always the same.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. security/pkg/pki/ra/common.go

    	lifetime := requestedLifetime
    	if requestedLifetime.Seconds() <= 0 {
    		lifetime = raOpts.DefaultCertTTL
    	}
    	// If the requested TTL is greater than maxCertTTL, return an error
    	if requestedLifetime.Seconds() > raOpts.MaxCertTTL.Seconds() {
    		return lifetime, raerror.NewError(raerror.TTLError, fmt.Errorf(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. security/pkg/cmd/constants.go

    	ReadSigningCertRetryMax = time.Second * 30
    
    	// DefaultMaxWorkloadCertTTL is the default max TTL of issued workload certificates.
    	DefaultMaxWorkloadCertTTL = 90 * 24 * time.Hour
    
    	// DefaultWorkloadCertTTL is the default TTL of issued workload certificates.
    	DefaultWorkloadCertTTL = 24 * time.Hour
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 07 03:27:36 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  9. pkg/controller/ttl/ttl_controller.go

    	defer utilruntime.HandleCrash()
    	defer ttlc.queue.ShutDown()
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting TTL controller")
    	defer logger.Info("Shutting down TTL controller")
    
    	if !cache.WaitForNamedCacheSync("TTL", ctx.Done(), ttlc.hasSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, ttlc.worker, time.Second)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/DfsReferral.java

            return "DfsReferral[pathConsumed=" + pathConsumed +
                ",server=" + server +
                ",share=" + share +
                ",link=" + link +
                ",path=" + path +
                ",ttl=" + ttl +
                ",expiration=" + expiration +
                ",resolveHashes=" + resolveHashes + "]";
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top