Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 561 for spacer (0.69 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/net/textproto/header_test.go

    	{"foo-bar$baz", "Foo-Bar$baz"},
    	{"foo-bar~baz", "Foo-Bar~baz"},
    	{"foo-bar*baz", "Foo-Bar*baz"},
    
    	// Non-ASCII or anything with spaces or non-token chars is unchanged:
    	{"üser-agenT", "üser-agenT"},
    	{"a B", "a B"},
    
    	// This caused a panic due to mishandling of a space:
    	{"C Ontent-Transfer-Encoding", "C Ontent-Transfer-Encoding"},
    	{"foo bar", "foo bar"},
    }
    
    func TestCanonicalMIMEHeaderKey(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 17 18:21:01 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

            '"quoted"'                         | 'quoted'
            '"with space"'                     | 'with space'
            '"with\\\\"quote\\\\"internal"'    | 'with"quote"internal'
            '"with \\\\"quote\\\\" and space"' | 'with "quote" and space'
        }
    
        @ToBeFixedForConfigurationCache
        def "compiler and linker args can contain quotes and spaces"() {
            given:
            buildFile << '''
            model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/encoding/json/indent.go

    // any indentation, to make it easier to embed inside other formatted JSON data.
    // Although leading space characters (space, tab, carriage return, newline)
    // at the beginning of src are dropped, trailing space characters
    // at the end of src are preserved and copied to dst.
    // For example, if src has no trailing spaces, neither will dst;
    // if src ends in a trailing newline, so will dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestNameTestDirectoryProvider.java

            super(root, klass);
        }
    
        private static String determineTestDirectoryName(Class<?> klass) {
            // NOTE: the space in the directory name is intentional to shake out problems with paths that contain spaces
            // NOTE: and so is the "s with circumflex" character (U+015D), to shake out problems with non-ASCII folder names
            return shouldUseNonAsciiPath(klass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top