Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for provisionings (0.23 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	pvCache := env.internalBinder.pvCache
    	for _, binding := range bindings {
    		if err := pvCache.Assume(binding.pv); err != nil {
    			t.Fatalf("error: %v", err)
    		}
    	}
    
    	pvcCache := env.internalBinder.pvcCache
    	for _, pvc := range provisionings {
    		if err := pvcCache.Assume(pvc); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

         */
        @Nonnull
        <T> Optional<T> lookupOptional(Class<T> type, String name);
    
        /**
         * Performs a collection lookup for given typed components.
         *
         * @param type The component type.
         * @return The list of components. The list may be empty if no components found.
         * @param <T> The component type.
         * @throws LookupException if there is some provisioning related issue.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/options/options.go

    		"Enable HostPath PV provisioning when running without a cloud provider. This allows testing and development of provisioning features. "+
    			"HostPath provisioning is not supported in any way, won't work in a multi-node cluster, and should not be used for anything other than testing or development.")
    	fs.BoolVar(&o.VolumeConfigFlags.EnableDynamicProvisioning, "enable-dynamic-provisioning", o.VolumeConfigFlags.EnableDynamicProvisioning,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/config/types.go

    	// enableHostPathProvisioning enables HostPath PV provisioning when running without a
    	// cloud provider. This allows testing and development of provisioning features. HostPath
    	// provisioning is not supported in any way, won't work in a multi-node cluster, and
    	// should not be used for anything other than testing or development.
    	EnableHostPathProvisioning bool
    	// enableDynamicProvisioning enables the provisioning of volumes when running within an environment
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	fs.BoolVar(&o.VolumeConfiguration.EnableDynamicProvisioning, "enable-dynamic-provisioning", o.VolumeConfiguration.EnableDynamicProvisioning, "Enable dynamic...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tools/packaging/common/sidecar.env

    # Ignore Istio iptables custom rules
    # Enable this flag if you would like to manage iptables yourself. Default to false (true/false)
    # ISTIO_CUSTOM_IP_TABLES=false
    
    # Location of provisioning certificates. VM provisioning tools must generate a certificate with
    # the expected SAN. Istio-agent will use it to connect to istiod and get fresh certificates.
    # PROV_CERT=/var/run/secrets/istio
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/provision_test.go

    			errors:          noerrors,
    			test:            wrapTestWithProvisionCalls([]provisionCall{provision1Error}, testSyncClaim),
    		},
    		{
    			// No provisioning if there is a matching volume available
    			name:            "11-6 - provisioning when there is a volume available",
    			initialVolumes:  newVolumeArray("volume11-6", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classGold),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. build-logic/integration-testing/build.gradle.kts

    description = "Provides plugins to create and configure integration, cross-version and distribution tests"
    
    gradlePlugin {
        plugins {
            register("androidStudioProvisioning") {
                id = "gradlebuild.android-studio-provisioning"
                implementationClass = "gradlebuild.integrationtests.ide.AndroidStudioProvisioningPlugin"
            }
        }
    }
    
    dependencies {
        implementation("gradlebuild:basics")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 06 17:21:17 UTC 2024
    - 675 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/matchingVendorWithCC.out

             > No locally installed toolchains match and toolchain auto-provisioning is not enabled....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 513 bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder.go

    		lastProcessedBinding++
    	}
    
    	// Update claims objects to trigger volume provisioning. Let the PV controller take care of the rest
    	// PV controller is expected to signal back by removing related annotations if actual provisioning fails
    	for i, claim = range claimsToProvision {
    		logger.V(5).Info("Updating claims objects to trigger volume provisioning", "pod", klog.KObj(pod), "PVC", klog.KObj(claim))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top