Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,159 for space1 (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

                    environment ${envVar}: '-DFOO="with a space"'
                }
            """
            succeeds('execStartScript')
    
            then:
            outputContains("FOO: with a space")
    
            where:
            envVar << ["JAVA_OPTS", "SAMPLE_OPTS"]
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        def "environment variables can have spaces in their values that should be treated as separate tokens"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/fmt/scan_test.go

    		{"space vs newline 0010", "1\n2", "%d \n%d", 2, true},
    		{"space vs newline 0011", "1\n2", "%d \n %d", 2, true},
    		{"space vs newline 0100", "1\n 2", "%d\n%d", 2, true},
    		{"space vs newline 0101", "1\n 2", "%d\n%d ", 2, true},
    		{"space vs newline 0110", "1\n 2", "%d \n%d", 2, true},
    		{"space vs newline 0111", "1\n 2", "%d \n %d", 2, true},
    		{"space vs newline 1000", "1 \n2", "%d\n%d", 2, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/html.go

    	// “A closing tag consists of the string </, a tag name,
    	// optional spaces, tabs, and up to one line ending, and the character >.”
    	if i+2 >= len(s) || s[i] != '<' || s[i+1] != '/' {
    		return nil, 0, false
    	}
    	if skipSpace(s, i+2) != i+2 {
    		// Goldmark allows spaces here but the spec and the Dingus do not.
    		p.corner = true
    	}
    
    	if _, j, ok := parseTagName(s, i+2); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. src/net/textproto/textproto.go

    	}
    	return id, nil
    }
    
    // TrimString returns s without leading and trailing ASCII space.
    func TrimString(s string) string {
    	for len(s) > 0 && isASCIISpace(s[0]) {
    		s = s[1:]
    	}
    	for len(s) > 0 && isASCIISpace(s[len(s)-1]) {
    		s = s[:len(s)-1]
    	}
    	return s
    }
    
    // TrimBytes returns b without leading and trailing ASCII space.
    func TrimBytes(b []byte) []byte {
    	for len(b) > 0 && isASCIISpace(b[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    // Not even worth sorting.
    var regSpace []regSet
    
    /*
    	Each architecture defines a register space as a unique
    	integer range.
    	Here is the list of architectures and the base of their register spaces.
    */
    
    const (
    	// Because of masking operations in the encodings, each register
    	// space should start at 0 modulo some power of 2.
    	RBase386     = 1 * 1024
    	RBaseAMD64   = 2 * 1024
    	RBaseARM     = 3 * 1024
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top