Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for vol7 (0.05 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			}
    
    			volumesFailedReconstruction := sets.New[string]()
    			for _, vol := range rcInstance.volumesFailedReconstruction {
    				volumesFailedReconstruction.Insert(vol.volumeSpecName)
    			}
    			if !reflect.DeepEqual(sets.List(volumesFailedReconstruction), tc.expectedVolumesFailedReconstruction) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/staticpod/utils.go

    	}
    }
    
    // VolumeMapToSlice returns a slice of volumes from a map's values
    func VolumeMapToSlice(volumes map[string]v1.Volume) []v1.Volume {
    	v := make([]v1.Volume, 0, len(volumes))
    
    	for _, vol := range volumes {
    		v = append(v, vol)
    	}
    
    	sort.Slice(v, func(i, j int) bool {
    		return strings.Compare(v[i].Name, v[j].Name) == -1
    	})
    
    	return v
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/recycle_test.go

    	runningPod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "runningPod",
    			Namespace: testNamespace,
    		},
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name: "vol1",
    					VolumeSource: v1.VolumeSource{
    						PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
    							ClaimName: "runningClaim",
    						},
    					},
    				},
    			},
    		},
    		Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    	asw ActualStateOfWorld) {
    	volumes := asw.GetMountedVolumes()
    	for _, vol := range volumes {
    		if vol.VolumeName == expectedVolumeName {
    			if vol.SELinuxMountContext == expectedSELinuxContext {
    				return
    			}
    			t.Errorf(
    				"Volume %q has wrong SELinux context, expected %q, got %q",
    				expectedVolumeName,
    				expectedSELinuxContext,
    				vol.SELinuxMountContext)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-kubeapiserver.sh

    # Configuration of etcd level encryption consists of the following steps:
    # 1. Writing encryption provider config to disk
    # 2. Adding encryption-provider-config flag to kube-apiserver
    # 3. Add kms-socket-vol and kms-socket-vol-mnt to enable communication with kms-plugin (if requested)
    #
    # Expects parameters:
    # $1 - path to kube-apiserver template
    # $2 - kube-apiserver startup flags (must be passed by reference)
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            int di = 0;
            for ( ;; ) {
                            /* NTLM HTTP Authentication must be re-negotiated
                             * with challenge from 'server' to access DFS vol. */
                dr.resolveHashes = auth.hashesExternal;
                dr.ttl = resp.referrals[di].ttl;
                dr.expiration = expiration;
                if (path.equals("")) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/testing/testing.go

    	// For debugging purposes, print the queue
    	logger := klog.FromContext(ctx)
    	for _, obj := range r.changedObjects {
    		switch obj.(type) {
    		case *v1.PersistentVolume:
    			vol, _ := obj.(*v1.PersistentVolume)
    			logger.V(4).Info("Reactor queue", "volumeName", vol.Name)
    		case *v1.PersistentVolumeClaim:
    			claim, _ := obj.(*v1.PersistentVolumeClaim)
    			logger.V(4).Info("Reactor queue", "PVC", klog.KObj(claim))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/PairedStatsAccumulator.java

      /** Adds the given pair of values to the dataset. */
      public void add(double x, double y) {
        // We extend the recursive expression for the one-variable case at Art of Computer Programming
        // vol. 2, Knuth, 4.2.2, (16) to the two-variable case. We have two value series x_i and y_i.
        // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	"k8s.io/kubernetes/pkg/controller/volume/persistentvolume/metrics"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/util/goroutinemap"
    	"k8s.io/kubernetes/pkg/util/slice"
    	vol "k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csimigration"
    
    	"k8s.io/klog/v2"
    )
    
    // This file contains the controller base functionality, i.e. framework to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_plugin.go

    func (p *csiPlugin) constructVolSourceSpec(volSpecName, driverName string) *volume.Spec {
    	vol := &api.Volume{
    		Name: volSpecName,
    		VolumeSource: api.VolumeSource{
    			CSI: &api.CSIVolumeSource{
    				Driver: driverName,
    			},
    		},
    	}
    	return volume.NewSpecFromVolume(vol)
    }
    
    // constructPVSourceSpec constructs volume.Spec with CSIPersistentVolumeSource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top