Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for Semicolons (0.24 sec)

  1. src/net/http/cookie.go

    //	cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
    //	cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
    //	          ; US-ASCII characters excluding CTLs,
    //	          ; whitespace DQUOTE, comma, semicolon,
    //	          ; and backslash
    //
    // We loosen this as spaces and commas are common in cookie values
    // thus we produce a quoted cookie-value if v contains commas or spaces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    func _() {
    	f(1, 2, 3)
    }
    func _(x int) int {
    	y := x
    	return y + 1
    }
    func _() int {
    	type T struct{}
    	var x T
    	return x
    }
    
    // making function declarations safe for new semicolon rules
    func _()	{ /* single-line function because of "short-ish" comment */ }
    func _() { /* multi-line function because of "long-ish" comment - much more comment text is following here */ /* and more */
    }
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            String s = (String)"Hello World";
        }
    """
            }
    
            void addError() {
                errorIndex += 1
                sourceFile << """\
    public void error${errorIndex}() {
        // Missing semicolon will trigger an error
        String s = "Hello, World!"
    }
    """
            }
    
            TestFile save() throws Exception {
                sourceFile << """\
    
    }"""
                return sourceFile
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/encoding/csv/reader_test.go

    		{"zzz", "yyy", "xxx"},
    	},
    	UseFieldsPerRecord: true,
    	FieldsPerRecord:    0,
    }, {
    	Name:   "NoEOLTest",
    	Input:  "§a,§b,§c",
    	Output: [][]string{{"a", "b", "c"}},
    }, {
    	Name:   "Semicolon",
    	Input:  "§a;§b;§c\n",
    	Output: [][]string{{"a", "b", "c"}},
    	Comma:  ';',
    }, {
    	Name: "MultiLine",
    	Input: `§"two
    line",§"one line",§"three
    line
    field"`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  5. src/go/printer/testdata/declarations.input

    func _() {
    	f(1, 2, 3)
    }
    func _(x int) int {
    	y := x; return y+1
    }
    func _() int {
    	type T struct{}; var x T; return x
    }
    
    
    // making function declarations safe for new semicolon rules
    func _() { /* single-line function because of "short-ish" comment */ }
    func _() { /* multi-line function because of "long-ish" comment - much more comment text is following here */ /* and more */ }
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

    /**
     * @since 3.3.0
     */
    @Named
    @Singleton
    public class DefaultRepositorySystemSessionFactory implements RepositorySystemSessionFactory {
        /**
         * User property for version filters expression, a semicolon separated list of filters to apply. By default, no version
         * filter is applied (like in Maven 3).
         * <p>
         * Supported filters:
         * <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/ast.go

    					// Replace "C" with _ "unsafe", to keep program valid.
    					// (Deleting import statement or clause is not safe if it is followed
    					// in the source by an explicit semicolon.)
    					f.Edit.Replace(f.offset(s.Path.Pos()), f.offset(s.Path.End()), `_ "unsafe"`)
    				}
    			}
    		}
    	}
    
    	// Accumulate pointers to uses of C.x.
    	if f.Ref == nil {
    		f.Ref = make([]*Ref, 0, 8)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. src/net/url/url.go

    //
    // Query is expected to be a list of key=value settings separated by ampersands.
    // A setting without an equals sign is interpreted as a key set to an empty
    // value.
    // Settings containing a non-URL-encoded semicolon are considered invalid.
    func ParseQuery(query string) (Values, error) {
    	m := make(Values)
    	err := parseQuery(m, query)
    	return m, err
    }
    
    func parseQuery(m Values, query string) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. src/encoding/xml/xml_test.go

    	{"<?xml version=\"1.0\"?><doc \x12='value'>what's up</doc>", "expected attribute name in element"},
    	{"<doc>&abc\x01;</doc>", "invalid character entity &abc (no semicolon)"},
    	{"<doc>&\x01;</doc>", "invalid character entity & (no semicolon)"},
    	{"<doc>&\xef\xbf\xbe;</doc>", "invalid character entity &\uFFFE;"},
    	{"<doc>&hello;</doc>", "invalid character entity &hello;"},
    }
    
    func TestDisallowedCharacters(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/regexp/exec_test.go

    // using Go double-quote syntax, one per line. Then the
    // regexps section gives a sequence of regexps to run on
    // the strings. In the block that follows a regexp, each line
    // gives the semicolon-separated match results of running
    // the regexp on the corresponding string.
    // Each match result is either a single -, meaning no match, or a
    // space-separated sequence of pairs giving the match and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top