Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for Semicolons (0.23 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    			if len(peData) > 0 {
    				// We put a semicolon before the flags to clearly
    				// separate them from the version, which can be long
    				// and have lots of weird things in it in development
    				// versions. We promise not to put a semicolon in the
    				// version, so it should be safe for readers to scan
    				// forward to the semicolon.
    				producer += "; " + string(peData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||""...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  3. src/net/http/cookie_test.go

    	var logbuf strings.Builder
    	log.SetOutput(&logbuf)
    
    	tests := []struct {
    		in, want string
    	}{
    		{"/path", "/path"},
    		{"/path with space/", "/path with space/"},
    		{"/just;no;semicolon\x00orstuff/", "/justnosemicolonorstuff/"},
    	}
    	for _, tt := range tests {
    		if got := sanitizeCookiePath(tt.in); got != tt.want {
    			t.Errorf("sanitizeCookiePath(%q) = %q; want %q", tt.in, got, tt.want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/link.go

    			// Even though the Markdown spec already requires having a complete
    			// list of all the HTML entities, the GitHub definition here just requires
    			// "looks like" an entity, meaning its an ampersand, letters/digits, and semicolon.
    			for j := i - 2; j > start; j-- {
    				if j < i-2 && s[j] == '&' {
    					i = j
    					continue Trim
    				}
    				if !isLetterDigit(s[j]) {
    					break Trim
    				}
    			}
    		}
    		break Trim
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    	// Due to performance concern, telemetry metadata is compressed into a semicolon separated string:
    	// workload-name;namespace;canonical-service-name;canonical-service-revision;cluster-id.
    	if features.EndpointTelemetryLabel {
    		// allow defaulting for non-injected cases
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. src/encoding/xml/xml.go

    				return nil
    			}
    			d.ungetc('<')
    			break Input
    		}
    		if quote >= 0 && b == byte(quote) {
    			break Input
    		}
    		if b == '&' && !cdata {
    			// Read escaped character expression up to semicolon.
    			// XML in all its glory allows a document to define and use
    			// its own character names with <!ENTITY ...> directives.
    			// Parsers are required to recognize lt, gt, amp, apos, and quot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_2x.md

     * Use `Protocol` to describe framing.
     * Implement write timeouts for HTTP/1.1 streams.
     * Avoid use of SPDY stream ID 1, as that's typically used for UPGRADE.
     * Support OAuth in `Authenticator`.
     * Permit a dangling semicolon in media type parsing.
    
    
    ## Version 1.x
    
    [Change log](changelog_1x.md)
    
    
     [brick]: https://noncombatant.org/2015/05/01/about-http-public-key-pinning/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  8. src/go/build/build_test.go

    	// Also don't count instances in suggested "go get" or similar commands
    	// (see https://golang.org/issue/41576). The suggested command typically
    	// follows a semicolon.
    	errStr, _, _ = strings.Cut(errStr, ";")
    
    	if n := strings.Count(errStr, pkgPath); n != 1 {
    		t.Fatalf("package path %q appears in error %d times; should appear once\nerror: %v", pkgPath, n, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/fmt.go

    func ellipsisIf(b bool) string {
    	if b {
    		return "..."
    	}
    	return ""
    }
    
    // Nodes
    
    // Format implements formatting for a Nodes.
    // The valid formats are:
    //
    //	%v	Go syntax, semicolon-separated
    //	%.v	Go syntax, comma-separated
    //	%+v	Debug syntax, as in DumpList.
    func (l Nodes) Format(s fmt.State, verb rune) {
    	if s.Flag('+') && verb == 'v' {
    		// %+v is DumpList output
    		dumpNodes(s, l, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. src/database/sql/fakedb_test.go

    //
    // Any of these can be proceeded by WAIT|<duration>|, to cause the
    // named method on fakeStmt to sleep for the specified duration.
    //
    // Multiple of these can be combined when separated with a semicolon.
    //
    // When opening a fakeDriver's database, it starts empty with no
    // tables. All tables and data are stored in memory only.
    type fakeDriver struct {
    	mu         sync.Mutex // guards 3 following fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top