Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 232 for Ttl (0.03 sec)

  1. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt

        for (i in 0 until answerCount) {
          skipName(buf) // name
    
          val type = buf.readShort().toInt() and 0xffff
          buf.readShort() // class
          @Suppress("UNUSED_VARIABLE")
          val ttl = buf.readInt().toLong() and 0xffffffffL // ttl
          val length = buf.readShort().toInt() and 0xffff
    
          if (type == TYPE_A || type == TYPE_AAAA) {
            val bytes = ByteArray(length)
            buf.read(bytes)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/troubleshooting-cache-changing/groovy/settings.gradle

    rootProject.name = 'caching-ttl-changing-version'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/troubleshooting-cache-changing/kotlin/settings.gradle.kts

    rootProject.name = "caching-ttl-changing-version"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  4. internal/config/dns/types.go

    	Weight   int         `json:"weight,omitempty"`
    	Text     string      `json:"text,omitempty"`
    	Mail     bool        `json:"mail,omitempty"` // Be an MX record. Priority becomes Preference.
    	TTL      uint32      `json:"ttl,omitempty"`
    
    	// Holds info about when the entry was created first.
    	CreationDate time.Time `json:"creationDate"`
    
    	// When a SRV record with a "Host: IP-address" is added, we synthesize
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/cache_test.go

    		pods        []*testExpirePodStruct
    		cleanupTime time.Time
    		ttl         time.Duration
    		wNodeInfo   *framework.NodeInfo
    	}{
    		{
    			name: "assumed pod would expire",
    			pods: []*testExpirePodStruct{
    				{pod: testPods[0], finishBind: true, assumedTime: now},
    			},
    			cleanupTime: now.Add(2 * defaultTTL),
    			wNodeInfo:   nil,
    			ttl:         defaultTTL,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/imagepolicy/config.go

    	minDenyTTL          = time.Duration(1) * time.Second
    	maxDenyTTL          = time.Duration(30) * time.Minute
    	useDefault          = time.Duration(0)  //sentinel for using default TTL
    	disableTTL          = time.Duration(-1) //sentinel for disabling a TTL
    )
    
    // imagePolicyWebhookConfig holds config data for imagePolicyWebhook
    type imagePolicyWebhookConfig struct {
    	KubeConfigFile string        `json:"kubeConfigFile"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. security/pkg/util/certutil_test.go

    		cert             []byte
    		now              time.Time
    		expectedWaitTime int
    		expectedErr      string
    	}{
    		"Success": {
    			// Now = 2017-08-23 21:00:40 +0000 UTC
    			// Cert TTL is 24h, and grace period is 50% of TTL, that is 12h.
    			// The cert expires at 2017-08-24 19:00:40 +0000 UTC, so the grace period starts at 2017-08-24 07:00:40 +0000 UTC
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. security/pkg/pki/util/generate_cert.go

    	// This can also be set to the identity running the workload,
    	// like kubernetes service account.
    	Host string
    
    	// The NotBefore field of the issued certificate.
    	NotBefore time.Time
    
    	// TTL of the certificate. NotAfter - NotBefore.
    	TTL time.Duration
    
    	// Signer certificate.
    	SignerCert *x509.Certificate
    
    	// Signer private key.
    	SignerPriv crypto.PrivateKey
    
    	// Signer private key (PEM encoded).
    	SignerPrivPem []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring.go

    // may be lengthened or shortened by additional calls to Set(). Garbage
    // collection of expired entries occurs during calls to Set(), however calls to
    // Get() will not return expired entries that have not yet been garbage
    // collected.
    func (c *Expiring) Set(key interface{}, val interface{}, ttl time.Duration) {
    	now := c.clock.Now()
    	expiry := now.Add(ttl)
    
    	c.mu.Lock()
    	defer c.mu.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	}
    	var ttl uint64
    	if ttlPtr != nil {
    		ttl = *ttlPtr
    	}
    	return ret, ttl, nil
    }
    
    // ttlOpts returns client options based on given ttl.
    // ttl: if ttl is non-zero, it will attach the key to a lease with ttl of roughly the same length
    func (s *store) ttlOpts(ctx context.Context, ttl int64) ([]clientv3.OpOption, error) {
    	if ttl == 0 {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top