Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewNodeClientWithExpansion (0.19 sec)

  1. pkg/volume/csi/csi_client_test.go

    	}
    }
    
    func newFakeCsiDriverClientWithExpansion(t *testing.T, stagingCapable bool, expansionSet bool) *fakeCsiDriverClient {
    	return &fakeCsiDriverClient{
    		t:          t,
    		nodeClient: fake.NewNodeClientWithExpansion(stagingCapable, expansionSet),
    	}
    }
    
    func newFakeCsiDriverClientWithVolumeStats(t *testing.T, volumeStatsSet bool) *fakeCsiDriverClient {
    	return &fakeCsiDriverClient{
    		t:          t,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. pkg/volume/csi/fake/fake_client.go

    		nodePublishedVolumes: make(map[string]CSIVolume),
    		nodeStagedVolumes:    make(map[string]CSIVolume),
    		stageUnstageSet:      stageUnstageSet,
    		volumeStatsSet:       true,
    	}
    }
    
    func NewNodeClientWithExpansion(stageUnstageSet bool, expansionSet bool) *NodeClient {
    	return &NodeClient{
    		nodePublishedVolumes: make(map[string]CSIVolume),
    		nodeStagedVolumes:    make(map[string]CSIVolume),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 16K bytes
    - Viewed (0)
Back to top