Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Visiting (0.14 sec)

  1. pkg/controller/podgc/gc_controller_test.go

    			for _, pod := range pods {
    				podInformer.Informer().GetStore().Add(pod)
    			}
    
    			pods, err := podInformer.Lister().List(labels.Everything())
    			if err != nil {
    				t.Errorf("Error while listing all Pods: %v", err)
    				return
    			}
    			gcc.gcUnscheduledTerminating(ctx, pods)
    			verifyDeletedAndPatchedPods(t, client, test.deletedPodNames, test.patchedPodNames)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. cmd/api-response.go

    		}); err != nil {
    			return err
    		}
    	}
    
    	return e.EncodeToken(start.End())
    }
    
    // ObjectInternalInfo contains some internal information about a given
    // object, it will printed in listing calls with enabled metadata.
    type ObjectInternalInfo struct {
    	K int // Data blocks
    	M int // Parity blocks
    }
    
    // Object container for object metadata
    type Object struct {
    	Key          string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. cmd/object_api_suite_test.go

    		}
    
    	}
    }
    
    // Wrapper for calling TestPaging for both Erasure and FS.
    func TestPaging(t *testing.T) {
    	ExecObjectLayerTest(t, testPaging)
    }
    
    // Tests validate creation of objects and the order of listing using various filters for ListObjects operation.
    func testPaging(obj ObjectLayer, instanceType string, t TestErrHandler) {
    	obj.MakeBucket(context.Background(), "bucket", MakeBucketOptions{})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    When using modules, downloaded packages are stored in the module cache.
    See https://golang.org/ref/mod#module-cache.
    
    When using modules, an additional variant of the go-import meta tag is
    recognized and is preferred over those listing version control systems.
    That variant uses "mod" as the vcs in the content value, as in:
    
    	<meta name="go-import" content="example.org mod https://code.org/moduleproxy">
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	// a UID.
    	if err := kl.runtimeCache.ForceUpdateIfOlder(ctx, kl.clock.Now()); err != nil {
    		klog.ErrorS(err, "Error listing containers")
    		return err
    	}
    	runningRuntimePods, err := kl.runtimeCache.GetPods(ctx)
    	if err != nil {
    		klog.ErrorS(err, "Error listing containers")
    		return err
    	}
    
    	// Stop probing pods that are not running
    	klog.V(3).InfoS("Clean up probes for terminated pods")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Alpha support for field selectors on custom resources has been added. With the `CustomResourceFieldSelectors` feature gate enabled, the CustomResourceDefinition API now allows specifying `selectableFields`. Listing a field there enables filtering custom resources for that CustomResourceDefinition in list or watch requests. ([#122717](https://github.com/kubernetes/kubernetes/pull/122717), [@jpbetz](https://github.com/jpbetz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/alldocs.go

    // Although they are Go source files, the paths may not end in ".go".
    //
    // The -m flag causes list to list modules instead of packages.
    //
    // When listing modules, the -f flag still specifies a format template
    // applied to a Go struct, but now a Module struct:
    //
    //	type Module struct {
    //	    Path       string        // module path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. CREDITS

    add to a covered work, you may (if authorized by the copyright holders of
    that material) supplement the terms of this License with terms:
    
        a) Disclaiming warranty or limiting liability differently from the
        terms of sections 15 and 16 of this License; or
    
        b) Requiring preservation of specified reasonable legal notices or
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top