Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Shareable (0.26 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. 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)
  3. 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)
  4. 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