Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for expandFile (0.28 sec)

  1. src/cmd/link/internal/ld/pcln.go

    		// when we save the size.
    		filename := cu.FileTable[i]
    		if _, ok := fileOffsets[filename]; !ok {
    			fileOffsets[filename] = uint32(fileSize)
    			fileSize += int64(len(expandFile(filename)) + 1) // NULL terminate
    		}
    
    		// Find the maximum file index we've seen.
    		if cuEntries[cu.PclnIndex] < i+1 {
    			cuEntries[cu.PclnIndex] = i + 1 // Store max + 1
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.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. 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)
  4. 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)
  5. 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)
Back to top