Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for Expired (0.22 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonExpired indicates that the request is invalid because the content you are requesting
    	// has expired and is no longer available. It is typically associated with watches that can't be
    	// serviced.
    	// Status code 410 (gone)
    	StatusReasonExpired StatusReason = "Expired"
    
    	// StatusReasonServiceUnavailable means that the request itself was valid,
    	// but the requested service is unavailable at this time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. cmd/api-errors.go

    	},
    	ErrMalformedExpires: {
    		Code:           "AuthorizationQueryParametersError",
    		Description:    "X-Amz-Expires should be a number",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrNegativeExpires: {
    		Code:           "AuthorizationQueryParametersError",
    		Description:    "X-Amz-Expires must be non-negative",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAuthHeaderEmpty: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. cmd/erasure-object.go

    	if lc == nil && opts.Expiration.Expire {
    		if opts.VersionID != "" {
    			return objInfo, VersionNotFound{
    				Bucket:    bucket,
    				Object:    object,
    				VersionID: opts.VersionID,
    			}
    		}
    		return objInfo, ObjectNotFound{
    			Bucket: bucket,
    			Object: object,
    		}
    	}
    
    	if opts.DeletePrefix {
    		if opts.Expiration.Expire {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				cacher.Unlock()
    			}
    		}
    	}()
    
    	// wait for adding/removing watchers to end
    	wg.Wait()
    
    	if watchErr != nil {
    		t.Fatal(watchErr)
    	}
    
    	// wait out the expiration period and pop expired watchers
    	time.Sleep(2 * time.Second)
    	cacher.Lock()
    	defer cacher.Unlock()
    	cacher.bookmarkWatchers.popExpiredWatchersThreadUnsafe()
    	if len(cacher.bookmarkWatchers.watchersBuckets) != 0 {
    		numWatchers := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    		cancel()
    		select {
    		case <-req.Context().Done():
    			return nil
    		case <-time.After(5 * time.Second):
    			return errors.New("redirected request's context never expired after root request canceled")
    		}
    	}
    	req, _ := NewRequestWithContext(ctx, "GET", ts.URL, nil)
    	_, err := c.Do(req)
    	ue, ok := err.(*url.Error)
    	if !ok {
    		t.Fatalf("got error %T; want *url.Error", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    				opt.HTTP.Headers = headers.New().
    					WithAuthz(jwt.TokenIssuer2).
    					Build()
    				opt.Check = check.Status(http.StatusForbidden)
    				src.CallOrFail(t, opt)
    			})
    
    			t.NewSubTest("deny with expired token").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    				opt.HTTP.Path = "/"
    				opt.HTTP.Headers = headers.New().
    					WithAuthz(jwt.TokenExpired).
    					Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    			var sz int64
    			objDeleted, sz = item.applyActions(ctx, objAPI, oi, &sizeS)
    			done()
    
    			// DeleteAllVersionsAction: The object and all its
    			// versions are expired and
    			// doesn't contribute toward data usage.
    			if objDeleted {
    				break
    			}
    			actualSz, err := oi.GetActualSize()
    			if err != nil {
    				continue
    			}
    
    			if oi.DeleteMarker {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  8. cluster/gce/windows/k8s-node-setup.psm1

             "$(Get-NetRoute -AddressFamily IPv4 | Out-String)")
      }
    }
    
    # Checks if the route to the GCE metadata server is present. Returns when the
    # route is NOT present or after a timeout has expired.
    function WaitFor_GceMetadataServerRouteToBeRemoved {
      $elapsed = 0
      $timeout = 60
      Log-Output ("Waiting up to ${timeout} seconds for GCE metadata server " +
                  "route to be removed")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    			}
    		}
    		return false
    	}
    	if entry.Time.Before(testCacheExpire) {
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: %s: test output expired due to go clean -testcache\n", a.Package.ImportPath)
    		}
    		return false
    	}
    	i := bytes.LastIndexByte(data[:len(data)-1], '\n') + 1
    	if !bytes.HasPrefix(data[i:], []byte("ok  \t")) {
    		if cache.DebugTest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Fatalf("update failed: %v", err)
    	}
    
    	// compact to latest revision.
    	lastRVString := preset[2].storedObj.ResourceVersion
    	compaction(ctx, t, lastRVString)
    
    	// The old continue token should have expired
    	options = storage.ListOptions{
    		ResourceVersion: "0",
    		Predicate:       pred(0, continueFromSecondItem),
    		Recursive:       true,
    	}
    	err := store.GetList(ctx, "/pods", options, out)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top