Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for expand1 (0.13 sec)

  1. pkg/volume/csi/expander.go

    	if err != nil {
    		if inUseError(err) {
    			failedConditionErr := fmt.Errorf("Expander.NodeExpand failed to expand the volume : %w", volumetypes.NewFailedPreconditionError(err.Error()))
    			return false, failedConditionErr
    		}
    		return false, fmt.Errorf("Expander.NodeExpand failed to expand the volume : %w", err)
    	}
    	return true, nil
    }
    
    func inUseError(err error) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/expander-defaults.go

    }
    
    func (e *expanderDefaults) ExpandVolumeDevice(spec *volume.Spec, newSize resource.Quantity, oldSize resource.Quantity) (resource.Quantity, error) {
    	klog.Warning(logPrefix(e.plugin), "using default expand for volume ", spec.Name(), ", to size ", newSize, " from ", oldSize)
    	return newSize, nil
    }
    
    // the defaults for NodeExpand return a generic resize indicator that will trigger the operation executor to go ahead with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/hkdf/hkdf.go

    	n := copy(p, f.buf)
    	p = p[n:]
    
    	// Fill the rest of the buffer
    	for len(p) > 0 {
    		if f.counter > 1 {
    			f.expander.Reset()
    		}
    		f.expander.Write(f.prev)
    		f.expander.Write(f.info)
    		f.expander.Write([]byte{f.counter})
    		f.prev = f.expander.Sum(f.prev[:0])
    		f.counter++
    
    		// Copy the new batch into p
    		f.buf = f.prev
    		n = copy(p, f.buf)
    		p = p[n:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/expander.go

    Hemant Kumar <******@****.***> 1551618781 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 14:21:44 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * they represent, so, for example, {@code \n} becomes newline. If this is undesirable then {@link #expand(Map, Action)}
         * should be used to disable this behavior.
         *
         * @param properties reference-to-value map for substitution
         * @return this
         */
        ContentFilterable expand(Map<String, ?> properties);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/config/config.go

    func set(slice []string) map[string]bool {
    	s := make(map[string]bool, len(slice))
    	for _, v := range slice {
    		s[v] = true
    	}
    	return s
    }
    
    // Expand takes a counter defined with buckets and expands it into distinct
    // strings for each bucket
    func Expand(counter string) []string {
    	prefix, rest, hasBuckets := strings.Cut(counter, "{")
    	var counters []string
    	if hasBuckets {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/reflect/export_test.go

    	}
    	// Extract size information.
    	argSize = abid.stackCallArgsSize
    	retOffset = abid.retOffset
    	frametype = toType(ft)
    
    	// Expand stack pointer bitmap into byte-map.
    	for i := uint32(0); i < abid.stackPtrs.n; i++ {
    		stack = append(stack, abid.stackPtrs.data[i/8]>>(i%8)&1)
    	}
    
    	// Expand register pointer bitmaps into byte-maps.
    	bool2byte := func(b bool) byte {
    		if b {
    			return 1
    		}
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/main/resources/footer.html

            link.classList.add("active");
    
            // Expand all parent navigation
            var parentListEl = link.closest("li");
            while (parentListEl !== null) {
                var dropDownEl = parentListEl.querySelector(".nav-dropdown");
                if (dropDownEl !== null) {
                    dropDownEl.classList.add("expanded");
                }
                parentListEl = parentListEl.parentNode.closest("li");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. pkg/test/util/file/file.go

    }
    
    // NormalizePath expands the homedir (~) and returns an error if the file doesn't exist.
    func NormalizePath(originalPath string) (string, error) {
    	if originalPath == "" {
    		return "", nil
    	}
    	// trim leading/trailing spaces from the path and if it uses the homedir ~, expand it.
    	var err error
    	out := strings.TrimSpace(originalPath)
    	out, err = homedir.Expand(out)
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipFileTree.java

            File zipFile = fileProvider.get();
            if (!zipFile.exists()) {
                throw new InvalidUserDataException(format("Cannot expand %s as it does not exist.", getDisplayName()));
            }
            if (!zipFile.isFile()) {
                throw new InvalidUserDataException(format("Cannot expand %s as it is not a file.", getDisplayName()));
            }
    
            File expandedDir = getExpandedDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top