Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,004 for spacer (0.14 sec)

  1. cmd/signature-v4-parser.go

    	// credElement is fetched first to skip replacing the space in access key.
    	credElement := strings.TrimPrefix(strings.Split(strings.TrimSpace(v4Auth), ",")[0], signV4Algorithm)
    	// Replace all spaced strings, some clients can send spaced
    	// parameters and some won't. So we pro-actively remove any spaces
    	// to make parsing easier.
    	v4Auth = strings.ReplaceAll(v4Auth, " ", "")
    	if v4Auth == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/link.go

    	// and collapse consecutive internal spaces, tabs, and line endings to a single space.”
    	s = trimSpaceTabNewline(s)
    	var b strings.Builder
    	space := false
    	hi := false
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		switch c {
    		case ' ', '\t', '\n':
    			space = true
    			continue
    		default:
    			if space {
    				b.WriteByte(' ')
    				space = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/unicode/graphic.go

    // characters include letters, marks, numbers, punctuation, symbols, and the
    // ASCII space character, from categories [L], [M], [N], [P], [S] and the ASCII space
    // character. This categorization is the same as [IsGraphic] except that the
    // only spacing character is ASCII space, U+0020.
    func IsPrint(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pp != 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. src/go/doc/synopsis.go

    	"author",
    }
    
    // Synopsis returns a cleaned version of the first sentence in text.
    // That sentence ends after the first period followed by space and not
    // preceded by exactly one uppercase letter, or at the first paragraph break.
    // The result string has no \n, \r, or \t characters and uses only single
    // spaces between words. If text starts with any of the [IllegalPrefixes],
    // the result is the empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/code.go

    				break
    			}
    			// var iline string
    			// is := initialSpaces(line)
    			// if is < 4 {
    			// 	iline = "    " + line
    			// } else {
    			// 	iline = "\t" + line[4:]
    			// }
    			// Indent by 4 spaces.
    			pre := s.prefix
    			if i == 0 {
    				pre = prefix1
    			}
    			fmt.Fprintf(buf, "%s%s%s\n", pre, "    ", line)
    		}
    	} else {
    		fmt.Fprintf(buf, "%s%s\n", prefix1, b.Fence)
    		for _, line := range b.Text {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/math/big/intconv.go

    		switch d := width - length; {
    		case s.Flag('-'):
    			// pad on the right with spaces; supersedes '0' when both specified
    			right = d
    		case s.Flag('0') && !precisionSet:
    			// pad with zeros unless precision also specified
    			zeros = d
    		default:
    			// pad on the left with spaces
    			left = d
    		}
    	}
    
    	// print number as [left pad][sign][prefix][zero pad][digits][right pad]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. hack/verify-description.sh

        echo "API file: ${file} should not contain descriptions in struct tags"
        result=1
      fi
      if grep json: "${file}" | grep -Ee ",[[:space:]]+omitempty|omitempty[[:space:]]+" ; then
        echo "API file: ${file} should not contain leading or trailing spaces for omitempty directive"
        result=1
      fi
    done
    
    internal_types_files="${KUBE_ROOT}/pkg/apis/core/types.go ${KUBE_ROOT}/pkg/apis/extensions/types.go"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. cmd/signature-v4-utils.go

    }
    
    // Trim leading and trailing spaces and replace sequential spaces with one space, following Trimall()
    // in http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html
    func signV4TrimAll(input string) string {
    	// Compress adjacent spaces (a space is determined by
    	// unicode.IsSpace() internally here) to one space and return
    	return strings.Join(strings.Fields(input), " ")
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    )
    
    // Apply name space translation to name n.
    // The default name space (for Space=="")
    // applies only to element names, not to attribute names.
    func (d *Decoder) translate(n *Name, isElementName bool) {
    	switch {
    	case n.Space == xmlnsPrefix:
    		return
    	case n.Space == "" && !isElementName:
    		return
    	case n.Space == xmlPrefix:
    		n.Space = xmlURL
    	case n.Space == "" && n.Local == xmlnsPrefix:
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. src/net/textproto/reader.go

    // ReadContinuedLine reads a possibly continued line from r,
    // eliding the final trailing ASCII white space.
    // Lines after the first are considered continuations if they
    // begin with a space or tab character. In the returned data,
    // continuation lines are separated from the previous line
    // only by a single space: the newline and leading white space
    // are removed.
    //
    // For example, consider this input:
    //
    //	Line 1
    //	  continued...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top