Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for Visiting (0.17 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// if `paramKind` is namespace-scoped.
    	//
    	Name string `json:"name,omitempty" protobuf:"bytes,1,rep,name=name"`
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    	// the search for params to a specific namespace. Applies to both `name` and
    	// `selector` fields.
    	//
    	// A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    	cred, owner, s3Err := validateAdminSignature(ctx, r, "")
    	if s3Err != ErrNone {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL)
    		return
    	}
    
    	var targetAccount string
    
    	// If listing is requested for a specific user (who is not the request
    	// sender), check that the user has permissions.
    	user := r.Form.Get("user")
    	if user != "" && user != cred.AccessKey {
    		if !globalIAMSys.IsAllowed(policy.Args{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// if `paramKind` is namespace-scoped.
    	//
    	Name string `json:"name,omitempty" protobuf:"bytes,1,rep,name=name"`
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    	// the search for params to a specific namespace. Applies to both `name` and
    	// `selector` fields.
    	//
    	// A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.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)
  6. platforms/documentation/docs/src/docs/css/manual.css

    .exampleblock>.title>a {
    	text-decoration: none;
    	color: var(--num-color);
    }
    
    .exampleblock .listingblock {
    	margin: 0;
    }
    
    /*
     * Ensure that blocks of code do not wrap by applying the behavior of `[listing%nowrap]` by default.
     *
     * These styles are copied from a CSS ruleset in asciidoctor.css that has the same group of
     * selectors except that they end with `.nowrap`.
     */
    .openblock .content {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    		// First, you can actually run 'go test' in directories that
    		// have names that Windows thinks are installer-like,
    		// without getting a dialog box asking for more permissions.
    		// Second, in the Windows process listing during go test,
    		// the test shows up as test.test.exe, not pkgname.test.exe.
    		// That second one is a drawback, but it seems a small
    		// price to pay for the test running at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	canASan = false // whether we can run the address sanitizer
    )
    
    var (
    	goHostOS, goHostArch string
    	cgoEnabled           string // raw value from 'go env CGO_ENABLED'
    )
    
    // netTestSem is a semaphore limiting the number of tests that may use the
    // external network in parallel. If non-nil, it contains one buffer slot per
    // test (send to acquire), with a low enough limit that the overall number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    func Why(path string) string {
    	pkg, ok := loaded.pkgCache.Get(path)
    	if !ok {
    		return ""
    	}
    	return pkg.why()
    }
    
    // WhyDepth returns the number of steps in the Why listing.
    // If there is no reason for the package to be in the current build,
    // WhyDepth returns 0.
    func WhyDepth(path string) int {
    	n := 0
    	pkg, _ := loaded.pkgCache.Get(path)
    	for p := pkg; p != nil; p = p.stack {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top