Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for gwrite (0.39 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    		return b2i(fc.uge())
    	}
    	return 0
    }
    
    // logRule logs the use of the rule s. This will only be enabled if
    // rewrite rules were generated with the -log option, see _gen/rulegen.go.
    func logRule(s string) {
    	if ruleFile == nil {
    		// Open a log file to write log to. We open in append
    		// mode because all.bash runs the compiler lots of times,
    		// and we want the concatenation of all of those logs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    		defer cancel()
    
    		didReadResponse := make(chan struct{}) // closed after CONNECT write+read is done or fails
    		var (
    			resp *Response
    			err  error // write or read error
    		)
    		// Write the CONNECT request & read the response.
    		go func() {
    			defer close(didReadResponse)
    			err = connectReq.Write(conn)
    			if err != nil {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        // Verify the peer's settings were read and applied.
        assertThat(connection.peerSettings.headerTableSize).isEqualTo(0)
        val writer = connection.writer
        assertThat(writer.hpackWriter.dynamicTableByteCount).isEqualTo(0)
        assertThat(writer.hpackWriter.headerTableSizeSetting).isEqualTo(0)
      }
    
      @Test fun peerHttp2ClientDisablesPush() {
        val client = false // Peer is client, so we are server.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    			chainString := string(chain)
    			if isServiceChainName(chainString) {
    				natChains.Write(utiliptables.MakeChainLine(chain)) // flush
    				natRules.Write("-X", chainString)                  // delete
    			}
    		}
    		natRules.Write("COMMIT")
    		natLines := append(natChains.Bytes(), natRules.Bytes()...)
    		// Write it.
    		err = ipt.Restore(utiliptables.TableNAT, natLines, utiliptables.NoFlushTables, utiliptables.RestoreCounters)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2_gen.go

    		return
    	}
    	if (zb0001Mask & 0x1) == 0 { // if not omitted
    		// write "V2Obj"
    		err = en.Append(0xa5, 0x56, 0x32, 0x4f, 0x62, 0x6a)
    		if err != nil {
    			return
    		}
    		if z.ObjectV2 == nil {
    			err = en.WriteNil()
    			if err != nil {
    				return
    			}
    		} else {
    			// map header, size 1
    			// write "DDir"
    			err = en.Append(0x81, 0xa4, 0x44, 0x44, 0x69, 0x72)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    	// NOTE: NoFlushTables is used so we don't flush non-kubernetes chains in the table.
    	proxier.iptablesData.Reset()
    	proxier.iptablesData.Write(proxier.natChains.Bytes())
    	proxier.iptablesData.Write(proxier.natRules.Bytes())
    	proxier.iptablesData.Write(proxier.filterChains.Bytes())
    	proxier.iptablesData.Write(proxier.filterRules.Bytes())
    
    	proxier.logger.V(5).Info(
    		"Restoring iptables", "natChains", proxier.natChains,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	}
    
    	if transcript != nil {
    		transcript.Write(data)
    	}
    
    	return m, nil
    }
    
    var (
    	errShutdown = errors.New("tls: protocol is shutdown")
    )
    
    // Write writes data to the connection.
    //
    // As Write calls [Conn.Handshake], in order to prevent indefinite blocking a deadline
    // must be set for both [Conn.Read] and Write before Write is called when the handshake
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    var brokenConnErr = errors.New("too many writes to brokenConn")
    
    func (b *brokenConn) Write(data []byte) (int, error) {
    	if b.numWrites >= b.breakAfter {
    		return 0, brokenConnErr
    	}
    
    	b.numWrites++
    	return b.Conn.Write(data)
    }
    
    func TestFailedWrite(t *testing.T) {
    	// Test that a write error during the handshake is returned.
    	for _, breakAfter := range []int{0, 1} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	bps int
    }
    
    func (c *slowConn) Write(p []byte) (int, error) {
    	if c.bps == 0 {
    		panic("too slow")
    	}
    	t0 := time.Now()
    	wrote := 0
    	for wrote < len(p) {
    		time.Sleep(100 * time.Microsecond)
    		allowed := int(time.Since(t0).Seconds()*float64(c.bps)) / 8
    		if allowed > len(p) {
    			allowed = len(p)
    		}
    		if wrote < allowed {
    			n, err := c.Conn.Write(p[wrote:allowed])
    			wrote += n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    //    (from _GCoff), enabling the write barrier, enabling mutator
    //    assists, and enqueueing root mark jobs. No objects may be
    //    scanned until all Ps have enabled the write barrier, which is
    //    accomplished using STW.
    //
    //    b. Start the world. From this point, GC work is done by mark
    //    workers started by the scheduler and by assists performed as
    //    part of allocation. The write barrier shades both the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top