Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Visiting (0.27 sec)

  1. cmd/sts-handlers_test.go

    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that user listing does not return any entries
    	usersList, err := s.adm.ListUsers(ctx)
    	if err != nil {
    		c.Fatalf("list users should not fail: %v", err)
    	}
    	if len(usersList) != 1 {
    		c.Fatalf("expected user listing output: %v", usersList)
    	}
    	uinfo := usersList[userDN]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    }
    
    // return URL for a listing pending multipart uploads.
    func getListMultipartURL(endPoint, bucketName string) string {
    	queryValue := url.Values{}
    	queryValue.Set("uploads", "")
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    // return URL for listing pending multipart uploads with parameters.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    		// When PodDisruptionConditions is enabled, orphan Pods and unschedulable
    		// terminating Pods are marked as Failed. So we only need to check the phase.
    		// TODO(#113855): Stop limiting this behavior to Jobs with podFailurePolicy.
    		// For now, we do so to avoid affecting all running Jobs without the
    		// availability to opt-out into the old behavior.
    		return p.Status.Phase == v1.PodFailed
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. cmd/erasure-object.go

    		// lower layers decide this. This fixes a regression that was introduced
    		// in PR #14555 where !VersionPurgeStatus.Empty() is automatically
    		// considered as Delete marker true to avoid listing such objects by
    		// regular ListObjects() calls. However for delete replication this
    		// ends up being a problem because "upon" a successful delete this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	initialRV, preset, err := seedMultiLevelData(ctx, store)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	list := &example.PodList{}
    	storageOpts := storage.ListOptions{
    		// Ensure we're listing from "now".
    		ResourceVersion: "",
    		Predicate:       storage.Everything,
    		Recursive:       true,
    	}
    	if err := store.GetList(ctx, "/second", storageOpts, list); err != nil {
    		t.Errorf("Unexpected error: %v", err)
    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