Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Expired (0.19 sec)

  1. cmd/test-utils_test.go

    	d := UTCNow()
    	// Find epoch expires when the request will expire.
    	epochExpires := d.Unix() + expires
    
    	// Add expires header if not present.
    	expiresStr := req.Header.Get("Expires")
    	if expiresStr == "" {
    		expiresStr = strconv.FormatInt(epochExpires, 10)
    		req.Header.Set("Expires", expiresStr)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		return SOAResource{}, &nestedError{"Retry", err}
    	}
    	expire, off, err := unpackUint32(msg, off)
    	if err != nil {
    		return SOAResource{}, &nestedError{"Expire", err}
    	}
    	minTTL, _, err := unpackUint32(msg, off)
    	if err != nil {
    		return SOAResource{}, &nestedError{"MinTTL", err}
    	}
    	return SOAResource{ns, mbox, serial, refresh, retry, expire, minTTL}, nil
    }
    
    // A TXTResource is a TXT Resource record.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	waitForDetachCallCount(t, 0 /* expectedDetachCallCount */, fakePlugin)
    
    	// Delete the pod and the volume will be detached only after the maxLongWaitForUnmountDuration expires as volume is
    	//not unmounted. Here maxLongWaitForUnmountDuration is used to mimic that node is out of service.
    	// But in this case the node has the node.kubernetes.io/out-of-service taint and hence it will not wait for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  4. cmd/object-api-datatypes_gen.go

    			z.ContentEncoding, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "ContentEncoding")
    				return
    			}
    		case "Expires":
    			z.Expires, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Expires")
    				return
    			}
    		case "CacheControl":
    			z.CacheControl, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// operation. The update parameter indicates whether this is an operation
    	// against an existing object.
    	//
    	// Objects that are persisted with a TTL are evicted once the TTL expires.
    	TTLFunc func(obj runtime.Object, existing uint64, update bool) (uint64, error)
    
    	// PredicateFunc returns a matcher corresponding to the provided labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Futures.java

      }
    
      /**
       * Returns a future that delegates to another but will finish early (via a {@link
       * TimeoutException} wrapped in an {@link ExecutionException}) if the specified duration expires.
       *
       * <p>The delegate future is interrupted and cancelled if it times out.
       *
       * @param delegate The future to delegate to.
       * @param time when to time out the future
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.True(ok)
    	as.Equal(int64(3), resource2Capacity.Value())
    	as.Equal(int64(1), resource2Allocatable.Value())
    	as.Equal(0, len(removedResources))
    
    	// Expires resourceName1 endpoint. Verifies testManager.GetCapacity() reports that resourceName1
    	// is removed from capacity and it no longer exists in healthyDevices after the call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

      }
    
      /**
       * Returns a future that delegates to another but will finish early (via a {@link
       * TimeoutException} wrapped in an {@link ExecutionException}) if the specified duration expires.
       *
       * <p>The delegate future is interrupted and cancelled if it times out.
       *
       * @param delegate The future to delegate to.
       * @param unit the time unit of the time parameter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    		// ambiguous, since we don't know what protocol we're switching to.
    		// Conceivably, it's one that doesn't need us to send the body.
    		// Given that we'll send the body if ExpectContinueTimeout expires,
    		// be consistent and always send it if we aren't closing the connection.
    		if resp.Close || rc.treq.Request.Close {
    			close(continueCh) // don't send the body; the connection will close
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top