Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AutoClose (0.15 sec)

  1. src/encoding/xml/xml.go

    	// Such tags are recorded with the unknown prefix as the name space URL.
    	Strict bool
    
    	// When Strict == false, AutoClose indicates a set of elements to
    	// consider closed immediately after they are opened, regardless
    	// of whether an end element is present.
    	AutoClose []string
    
    	// Entity can be used to map non-standard entity names to string replacements.
    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/encoding/xml/xml_test.go

    func BenchmarkHTMLAutoClose(b *testing.B) {
    	b.RunParallel(func(p *testing.PB) {
    		for p.Next() {
    			d := NewDecoder(strings.NewReader(testInputHTMLAutoClose))
    			d.Strict = false
    			d.AutoClose = HTMLAutoClose
    			d.Entity = HTMLEntity
    			for {
    				_, err := d.Token()
    				if err != nil {
    					if err == io.EOF {
    						break
    					}
    					b.Fatalf("unexpected error: %v", err)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

            val sslSocket =
              route.address.sslSocketFactory.createSocket(
                rawSocket,
                route.address.url.host,
                route.address.url.port,
                // autoClose:
                true,
              ) as SSLSocket
    
            val tlsEquipPlan = planWithCurrentOrInitialConnectionSpec(connectionSpecs, sslSocket)
            val connectionSpec = connectionSpecs[tlsEquipPlan.connectionSpecIndex]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top