Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for expandFile (0.15 sec)

  1. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    il/Expand.class package org.codehaus.plexus.util; public synchronized class Expand { private java.io.File dest; private java.io.File source; private boolean overwrite; public void Expand(); public void execute() throws Exception; protected void expandFile(java.io.File, java.io.File) throws Exception; protected void extractFile(java.io.File, java.io.File, java.io.InputStream, String, java.util.Date, boolean) throws Exception; public void setDest(java.io.File); public void setSrc(java.io.File); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/README.md

    ### Schema
    
    Every `h2` tag and `h3` will be listed in the generated TOC.
    
    After every `h3` all content after the first element (usually a `p`) will be collapsed/expandable, up until the next `h3`, or `h2`.
    
    After every `h4` all content will be collapsed/expandable, up until the next `h4`, `h3` or `h2`.
    
    An `h3` may include an incubating marker `(i)` at the end of its text to indicate that the feature is incubating.
    
    Here's an example:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/plugins.go

    	return flexvolume.GetDynamicPluginProber(config.FlexVolumePluginDir, exec.New() /*exec.Interface*/)
    }
    
    // ProbeExpandableVolumePlugins returns volume plugins which are expandable
    func ProbeExpandableVolumePlugins(logger klog.Logger, config persistentvolumeconfig.VolumeConfiguration) ([]volume.VolumePlugin, error) {
    	var err error
    	allPlugins := []volume.VolumePlugin{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/kubelet/container/helpers_test.go

    				VolumeMounts: []v1.VolumeMount{{SubPathExpr: "$()"}},
    			},
    			expectedSubPath:   "$()",
    			expectedMountPath: "",
    			expectedOk:        false,
    		},
    		{
    			name: "subpaths with nested expandable envs",
    			container: &v1.Container{
    				VolumeMounts: []v1.VolumeMount{{SubPathExpr: "$(POD_NAME$(ANNOTATION))"}},
    			},
    			envs: []EnvVar{
    				{
    					Name:  "POD_NAME",
    					Value: "foo",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    		volumePlugin, err := asw.volumePluginMgr.FindNodeExpandablePluginBySpec(volumeObj.spec)
    		if err != nil || volumePlugin == nil {
    			// Log and continue processing
    			klog.InfoS("PodExistsInVolume failed to find expandable plugin",
    				"volume", volumeObj.volumeName,
    				"volumeSpecName", volumeObj.spec.Name())
    			return currentSize, false
    		}
    		if volumePlugin.RequiresFSResize() {
    			return currentSize, true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    func (pm *VolumePluginMgr) FindExpandablePluginBySpec(spec *Spec) (ExpandableVolumePlugin, error) {
    	volumePlugin, err := pm.FindPluginBySpec(spec)
    	if err != nil {
    		if spec.IsKubeletExpandable() {
    			// for kubelet expandable volumes, return a noop plugin that
    			// returns success for expand on the controller
    			klog.V(4).InfoS("FindExpandablePluginBySpec -> returning noopExpandableVolumePluginInstance", "specName", spec.Name())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    		Volume: &v1.Volume{
    			Name: volumeName,
    		},
    	}, nil
    }
    
    func (plugin *FakeVolumePlugin) GetDeviceMountRefs(deviceMountPath string) ([]string, error) {
    	return []string{}, nil
    }
    
    // Expandable volume support
    func (plugin *FakeVolumePlugin) ExpandVolumeDevice(spec *volume.Spec, newSize resource.Quantity, oldSize resource.Quantity) (resource.Quantity, error) {
    	return resource.Quantity{}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top