Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for SetCounter (0.27 sec)

  1. pkg/volume/csi/csi_block.go

    	// At this point it contains only "data/vol_data.json" and empty "dev/".
    	volumeDir := getVolumePluginDir(m.specName, m.plugin.host)
    	mounter := m.plugin.host.GetMounter(m.plugin.GetPluginName())
    	if err := removeall.RemoveAllOneFilesystem(mounter, volumeDir); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    // UnmapPodDevice unmaps the block device path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    }
    
    func (p *csiPlugin) NewDeviceUnmounter() (volume.DeviceUnmounter, error) {
    	return p.NewDetacher()
    }
    
    func (p *csiPlugin) GetDeviceMountRefs(deviceMountPath string) ([]string, error) {
    	m := p.host.GetMounter(p.GetPluginName())
    	return m.GetMountRefs(deviceMountPath)
    }
    
    // BlockVolumePlugin methods
    var _ volume.BlockVolumePlugin = &csiPlugin{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/volume/util/util.go

    // and Exec taken from given VolumeHost.
    func NewSafeFormatAndMountFromHost(pluginName string, host volume.VolumeHost) *mount.SafeFormatAndMount {
    	mounter := host.GetMounter(pluginName)
    	exec := host.GetExec(pluginName)
    	return &mount.SafeFormatAndMount{Interface: mounter, Exec: exec}
    }
    
    // GetVolumeMode retrieves VolumeMode from pv.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	return nil, fmt.Errorf("NewWrapperUnmounter not supported by Attach/Detach controller's VolumeHost implementation")
    }
    
    func (adc *attachDetachController) GetMounter(pluginName string) mount.Interface {
    	return nil
    }
    
    func (adc *attachDetachController) GetHostName() string {
    	return ""
    }
    
    func (adc *attachDetachController) GetHostIP() (net.IP, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pkg/volume/plugins.go

    	// the provided spec.  See comments on NewWrapperMounter for more
    	// context.
    	NewWrapperUnmounter(volName string, spec Spec, podUID types.UID) (Unmounter, error)
    
    	// Get mounter interface.
    	GetMounter(pluginName string) mount.Interface
    
    	// Returns the hostname of the host kubelet is running on
    	GetHostName() string
    
    	// Returns host IP or nil in the case of error.
    	GetHostIP() (net.IP, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.testing.jacoco.plugins.JacocoTaskExtension.isJmx()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoTaskExtension.java:0)
    Method <org.gradle.testing.jacoco.tasks.rules.JacocoLimit.getCounter()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoLimit.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return this.counters[id];},getCounter(cat,name){const id=cat+'.'+name;if(!this.counters[id]){return undefined;}
    return this.counters[id];},shiftTimestampsForward(amount){for(let sI=0;sI<this.slices.length;sI++){this.slices[sI].start=(this.slices[sI].start+amount);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top