Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 731 for expand1 (0.15 sec)

  1. 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)
  2. src/cmd/go/internal/generate/generate.go

    environment variables with alphanumeric names, such as $GOFILE or
    $HOME, are expanded throughout the command line. The syntax for
    variable expansion is $NAME on all operating systems. Due to the
    order of evaluation, variables are expanded even inside quoted
    strings. If the variable NAME is not set, $NAME expands to the
    empty string.
    
    A directive of the form,
    
    	//go:generate -command xxx args...
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. 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)
  4. cmd/endpoint-ellipses.go

    		}
    	}
    
    	return setIndexes, nil
    }
    
    // Returns all the expanded endpoints, each argument is expanded separately.
    func (s *endpointSet) getEndpoints() (endpoints []string) {
    	if len(s.endpoints) != 0 {
    		return s.endpoints
    	}
    	for _, argPattern := range s.argPatterns {
    		for _, lbls := range argPattern.Expand() {
    			endpoints = append(endpoints, strings.Join(lbls, ""))
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/webapp/WEB-INF/view/header.jsp

    									aria-expanded="false">
    									<em class="fa fa-fw fa-sign-in">
    									<span><la:message key="labels.login" /></span>
    								</la:link></li>
    						</c:when>
    					</c:choose>
    					<li class="nav-item"><la:link href="/help" styleClass="nav-link" role="help" aria-haspopup="true"
    							aria-expanded="false">
    							<em class="fa fa-fw fa-question-circle">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 24 03:00:28 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/orig/view/header.jsp

    									aria-expanded="false">
    									<em class="fa fa-fw fa-sign-in">
    									<span><la:message key="labels.login" /></span>
    								</la:link></li>
    						</c:when>
    					</c:choose>
    					<li class="nav-item"><la:link href="/help" styleClass="nav-link" role="help" aria-haspopup="true"
    							aria-expanded="false">
    							<em class="fa fa-fw fa-question-circle">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 24 03:00:28 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  10. internal/event/name.go

    	Everything
    )
    
    // The number of single names should not exceed 64.
    // This will break masking. Use bit 63 as extension.
    var _ = uint64(1 << objectSingleTypesEnd)
    
    // Expand - returns expanded values of abbreviated event type.
    func (name Name) Expand() []Name {
    	switch name {
    
    	case ObjectAccessedAll:
    		return []Name{
    			ObjectAccessedGet, ObjectAccessedHead,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top