Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for pvs2 (0.07 sec)

  1. pkg/scheduler/apis/config/types_pluginargs.go

    	// Shape specifies the points defining the score function shape, which is
    	// used to score nodes based on the utilization of statically provisioned
    	// PVs. The utilization is calculated by dividing the total requested
    	// storage of the pod by the total capacity of feasible PVs on each node.
    	// Each point contains utilization (ranges from 0 to 100) and its
    	// associated score (ranges from 0 to 10). You can turn the priority by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. plugin/pkg/admission/storage/storageobjectinuseprotection/admission.go

    		Handler: admission.NewHandler(admission.Create),
    	}
    }
    
    var (
    	pvResource  = api.Resource("persistentvolumes")
    	pvcResource = api.Resource("persistentvolumeclaims")
    )
    
    // Admit sets finalizer on all PVCs(PVs). The finalizer is removed by
    // PVCProtectionController(PVProtectionController) when it's not referenced.
    //
    // This prevents users from deleting a PVC that's used by a running pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 02 21:13:50 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  3. callbacks/preload.go

    		if len(foreignValues) == 0 {
    			return nil
    		}
    	}
    
    	// nested preload
    	for p, pvs := range preloads {
    		tx = tx.Preload(p, pvs...)
    	}
    
    	reflectResults := rel.FieldSchema.MakeSlice().Elem()
    	column, values := schema.ToQueryValues(clause.CurrentTable, relForeignKeys, foreignValues)
    
    	if len(values) != 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/math/j1.go

    	2.36851496667608785174e+00, // 0x4002F2B7F98FAEC0
    	1.22426109148261232917e+01, // 0x40287C377F71A964
    	1.76939711271687727390e+01, // 0x4031B1A8177F8EE2
    	5.07352312588818499250e+00, // 0x40144B49A574C1FE
    }
    var p1S2 = [5]float64{
    	2.14364859363821409488e+01, // 0x40356FBD8AD5ECDC
    	1.25290227168402751090e+02, // 0x405F529314F92CD5
    	2.32276469057162813669e+02, // 0x406D08D8D5A2DBD9
    	1.17679373287147100768e+02, // 0x405D6B7ADA1884A9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	LabelTopologyRegion = "topology.kubernetes.io/region"
    
    	// These label have been deprecated since 1.17, but will be supported for
    	// the foreseeable future, to accommodate things like long-lived PVs that
    	// use them.  New users should prefer the "topology.kubernetes.io/*"
    	// equivalents.
    	LabelFailureDomainBetaZone   = "failure-domain.beta.kubernetes.io/zone"   // deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/math/j0.go

    	-1.45073846780952986357e+00, // 0xBFF736398A24A843
    	-7.63569613823527770791e+00, // 0xC01E8AF3EDAFA7F3
    	-1.11931668860356747786e+01, // 0xC02662E6C5246303
    	-3.23364579351335335033e+00, // 0xC009DE81AF8FE70F
    }
    var p0S2 = [5]float64{
    	2.22202997532088808441e+01, // 0x40363865908B5959
    	1.36206794218215208048e+02, // 0x4061069E0EE8878F
    	2.70470278658083486789e+02, // 0x4070E78642EA079B
    	1.53875394208320329881e+02, // 0x40633C033AB6FAFF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  7. pkg/api/v1/persistentvolume/util_test.go

    	// Stub containing all possible secret references in a PV.
    	// The names of the referenced secrets match struct paths detected by reflection.
    	secretNamespace := "Spec.PersistentVolumeSource.AzureFile.SecretNamespace"
    	pvs := []*corev1.PersistentVolume{
    		{Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/framework_test.go

    		newVolume(name, capacity, boundToClaimUID, boundToClaimName, phase, reclaimPolicy, class, annotations...),
    	}
    }
    
    func withVolumeDeletionTimestamp(pvs []*v1.PersistentVolume) []*v1.PersistentVolume {
    	result := []*v1.PersistentVolume{}
    	for _, pv := range pvs {
    		// Using time.Now() here will cause mismatching deletion timestamps in tests
    		deleteTime := metav1.Date(2020, time.February, 18, 10, 30, 30, 10, time.UTC)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  9. pkg/scheduler/eventhandlers.go

    		case framework.PersistentVolume:
    			// MaxPDVolumeCountPredicate: since it relies on the counts of PV.
    			//
    			// PvAdd: Pods created when there are no PVs available will be stuck in
    			// unschedulable queue. But unbound PVs created for static provisioning and
    			// delay binding storage class are skipped in PV controller dynamic
    			// provisioning and binding process, will not trigger events to schedule pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    	V10
    	V11
    	V12
    	V13
    	V14
    	V15
    	V16
    	V17
    	V18
    	V19
    	V20
    	V21
    	V22
    	V23
    	V24
    	V25
    	V26
    	V27
    	V28
    	V29
    	V30
    	V31
    	VS0
    	VS1
    	VS2
    	VS3
    	VS4
    	VS5
    	VS6
    	VS7
    	VS8
    	VS9
    	VS10
    	VS11
    	VS12
    	VS13
    	VS14
    	VS15
    	VS16
    	VS17
    	VS18
    	VS19
    	VS20
    	VS21
    	VS22
    	VS23
    	VS24
    	VS25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top