Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for shareable (0.29 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaim.json

                    "operator": "operatorValue",
                    "values": [
                      "valuesValue"
                    ]
                  }
                ]
              }
            ]
          },
          "shareable": true
        },
        "reservedFor": [
          {
            "apiGroup": "apiGroupValue",
            "resource": "resourceValue",
            "name": "nameValue",
            "uid": "uidValue"
          }
        ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.5K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/CachingExcludeFactory.java

                }
                return specs.equals(that.specs);
            }
    
            @Override
            public int hashCode() {
                return hashCode;
            }
        }
    
        /**
         * A shareable backing cache for different caching exclude factories.
         * Synchronization is ad-hoc, since `computeIfAbsent` on a concurrent hash map
         * will not allow for recursion, which is the case for us whenever a cache is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    // Operation constants
    const (
    	Create  Operation = "CREATE"
    	Update  Operation = "UPDATE"
    	Delete  Operation = "DELETE"
    	Connect Operation = "CONNECT"
    )
    
    // PluginInitializer is used for initialization of shareable resources between admission plugins.
    // After initialization the resources have to be set separately
    type PluginInitializer interface {
    	Initialize(plugin Interface)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
Back to top