Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for flushF (0.14 sec)

  1. src/runtime/mgcmark.go

    		scanobject(b, gcw)
    
    		// Flush background scan work credit.
    		if gcw.heapScanWork >= gcCreditSlack {
    			gcController.heapScanWork.Add(gcw.heapScanWork)
    			workFlushed += gcw.heapScanWork
    			gcw.heapScanWork = 0
    		}
    	}
    
    	// Unlike gcDrain, there's no need to flush remaining work
    	// here because this never flushes to bgScanCredit and
    	// gcw.dispose will flush any remaining work to scanWork.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	systemstack(freeStackSpans)
    
    	// Ensure all mcaches are flushed. Each P will flush its own
    	// mcache before allocating, but idle Ps may not. Since this
    	// is necessary to sweep all spans, we need to ensure all
    	// mcaches are flushed before we start the next GC cycle.
    	//
    	// While we're here, flush the page cache for idle Ps to avoid
    	// having pages get stuck on them. These pages are hidden from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    	str := strings.Repeat("x", 1<<10)
    	bs := []byte(str)
    	for i := 0; i < b.N; i++ {
    		bw := NewWriter(io.Discard)
    		bw.Flush()
    		bw.WriteByte('a')
    		bw.Flush()
    		bw.WriteRune('B')
    		bw.Flush()
    		bw.Write(bs)
    		bw.Flush()
    		bw.WriteString(str)
    		bw.Flush()
    	}
    }
    
    func BenchmarkWriterFlush(b *testing.B) {
    	b.ReportAllocs()
    	bw := NewWriter(io.Discard)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	tx.Flush(&knftables.Set{
    		Name: clusterIPsSet,
    	})
    	tx.Flush(&knftables.Map{
    		Name: firewallIPsMap,
    	})
    	tx.Flush(&knftables.Map{
    		Name: noEndpointServicesMap,
    	})
    	tx.Flush(&knftables.Map{
    		Name: noEndpointNodePortsMap,
    	})
    	tx.Flush(&knftables.Map{
    		Name: serviceIPsMap,
    	})
    	tx.Flush(&knftables.Map{
    		Name: serviceNodePortsMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	FF1                           = 0x2000
    	FFDLY                         = 0x2000
    	FLUSHBAND                     = 0x40
    	FLUSHLOW                      = 0x8
    	FLUSHO                        = 0x100000
    	FLUSHR                        = 0x1
    	FLUSHRW                       = 0x3
    	FLUSHW                        = 0x2
    	F_CLOSEM                      = 0xa
    	F_DUP2FD                      = 0xe
    	F_DUPFD                       = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    		t.Errorf("got body %q; expected %q", bodyBytes, expected)
    	}
    }
    
    type mockFlusher struct {
    	http.ResponseWriter
    	flushed bool
    }
    
    func (m *mockFlusher) Flush() {
    	m.flushed = true
    }
    
    type wrappedRW struct {
    	http.ResponseWriter
    }
    
    func (w *wrappedRW) Unwrap() http.ResponseWriter {
    	return w.ResponseWriter
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    		// both the h1 and h2 Server's write buffers. For h1,
    		// sendfile is used, though, forcing a header flush at
    		// the io.Copy. http2 doesn't do a header flush so
    		// buffers all 11 bytes and then adds its own
    		// Content-Length. To prevent the Server's
    		// Content-Length and test ServeFile only, flush here.
    		w.(Flusher).Flush()
    	}))
    	resp, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (response.getHttpStatusCode() == 200) {
                    logger.info("Flushed config files.");
                } else {
                    logger.warn("Failed to flush config files.");
                }
            } catch (final Exception e) {
                logger.warn("Failed to flush config files.", e);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	FF1                           = 0x2000
    	FFDLY                         = 0x2000
    	FLUSHBAND                     = 0x40
    	FLUSHLOW                      = 0x8
    	FLUSHO                        = 0x100000
    	FLUSHR                        = 0x1
    	FLUSHRW                       = 0x3
    	FLUSHW                        = 0x2
    	F_CLOSEM                      = 0xa
    	F_DUP2FD                      = 0xe
    	F_DUPFD                       = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  10. cmd/storage-datatypes_gen_test.go

    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    	b.SetBytes(int64(buf.Len()))
    	en := msgp.NewWriter(msgp.Nowhere)
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.EncodeMsg(en)
    	}
    	en.Flush()
    }
    
    func BenchmarkDecodeBaseOptions(b *testing.B) {
    	v := BaseOptions{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    	b.SetBytes(int64(buf.Len()))
    	rd := msgp.NewEndlessReader(buf.Bytes(), b)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
Back to top