Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for shareable (0.12 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters.go

    }
    
    func (c claimController) allocate(ctx context.Context, nodeName string, resources resources) (string, *resourcev1alpha2.AllocationResult, error) {
    	allocation := &resourcev1alpha2.AllocationResult{
    		Shareable: c.claimParameters.Shareable,
    		AvailableOnNodes: &v1.NodeSelector{
    			NodeSelectorTerms: []v1.NodeSelectorTerm{
    				{
    					MatchExpressions: []v1.NodeSelectorRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 09:03:22 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    				return err
    			}
    		}
    	} else {
    		out.ResourceHandles = nil
    	}
    	out.AvailableOnNodes = (*core.NodeSelector)(unsafe.Pointer(in.AvailableOnNodes))
    	out.Shareable = in.Shareable
    	return nil
    }
    
    // Convert_v1alpha2_AllocationResult_To_resource_AllocationResult is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K 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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Gradle provides multiple ways to inspect your build:
    
    - Profile with build scans
    - Local profile reports
    - Low level profiling
    
    == What is a build scan?
    
    https://scans.gradle.com/[Build scans] are a persistent, shareable record of what happened when running a build.
    Build scans provide insights into your build that you can use to identify and fix performance bottlenecks.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top