Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for shareable (0.14 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// Shareable indicates whether the allocated claim is meant to be shareable
    	// by multiple consumers at the same time.
    	// +optional
    	Shareable bool `json:"shareable,omitempty" protobuf:"bytes,3,opt,name=shareable"`
    
    	// DriverRequests describes all resources that are needed for the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. pkg/apis/resource/types.go

    	// of the claim parameters when the parameter reference of the claim refers
    	// to some unknown type.
    	GeneratedFrom *ResourceClaimParametersReference
    
    	// Shareable indicates whether the allocated claim is meant to be shareable
    	// by multiple consumers at the same time.
    	Shareable bool
    
    	// DriverRequests describes all resources that are needed for the
    	// allocated claim. A single claim may use resources coming from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"shareable":      "Shareable indicates whether the allocated claim is meant to be shareable by multiple consumers at the same time.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // to some unknown type.
      // +optional
      optional ResourceClaimParametersReference generatedFrom = 2;
    
      // Shareable indicates whether the allocated claim is meant to be shareable
      // by multiple consumers at the same time.
      // +optional
      optional bool shareable = 3;
    
      // DriverRequests describes all resources that are needed for the
      // allocated claim. A single claim may use resources coming from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // everywhere.
      // +optional
      optional k8s.io.api.core.v1.NodeSelector availableOnNodes = 2;
    
      // Shareable determines whether the resource supports more
      // than one consumer at a time.
      // +optional
      optional bool shareable = 3;
    }
    
    // PodSchedulingContext objects hold information that is needed to schedule
    // a Pod with ResourceClaims that use "WaitForFirstConsumer" allocation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaim_test.go

    						DriverName: "valid",
    						Data:       strings.Repeat(" ", resource.ResourceHandleDataMaxSize),
    					}
    					handles = append(handles, handle)
    				}
    				return handles
    			}(),
    			Shareable: true,
    		},
    	}
    
    	scenarios := map[string]struct {
    		oldClaim     *resource.ResourceClaim
    		update       func(claim *resource.ResourceClaim) *resource.ResourceClaim
    		wantFailures field.ErrorList
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/scheduler/testing/wrappers.go

    func (wrapper *ClaimParametersWrapper) Namespace(s string) *ClaimParametersWrapper {
    	wrapper.SetNamespace(s)
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) Shareable(value bool) *ClaimParametersWrapper {
    	wrapper.ResourceClaimParameters.Shareable = value
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) GeneratedFrom(value *resourcev1alpha2.ResourceClaimParametersReference) *ClaimParametersWrapper {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    Gradle Terms of Service accepted.
    
    Publishing build scan...
    https://gradle.com/s/link
    ----
    
    A https://scans.gradle.com/[Build Scan] is a shareable and centralized record of a build and is available as a free service from Gradle.
    
    Click the link provided in the prompt: `https://gradle.com/s/link`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pkg/controller/resourceclaim/controller_test.go

    	}
    
    	return claim
    }
    
    func allocateClaim(claim *resourcev1alpha2.ResourceClaim) *resourcev1alpha2.ResourceClaim {
    	claim = claim.DeepCopy()
    	claim.Status.Allocation = &resourcev1alpha2.AllocationResult{
    		Shareable: true,
    	}
    	return claim
    }
    
    func structuredParameters(claim *resourcev1alpha2.ResourceClaim) *resourcev1alpha2.ResourceClaim {
    	claim = claim.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. pkg/volume/local/local.go

    			}
    			if fsGroupNew != fsGroupOld {
    				m.plugin.recorder.Eventf(m.pod, v1.EventTypeWarning, events.WarnAlreadyMountedVolume, "The requested fsGroup is %d, but the volume %s has GID %d. The volume may not be shareable.", fsGroupNew, m.volName, fsGroupOld)
    			}
    		}
    
    	}
    
    	if runtime.GOOS != "windows" {
    		// skip below MkdirAll for windows since the "bind mount" logic is implemented differently in mount_wiondows.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top