Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 112 for flushed (0.55 sec)

  1. src/runtime/traceruntime.go

    //
    // nosplit because it's called by traceAcquire, which is nosplit.
    //
    //go:nosplit
    func traceAcquireEnabled() traceLocker {
    	// Any time we acquire a traceLocker, we may flush a trace buffer. But
    	// buffer flushes are rare. Record the lock edge even if it doesn't happen
    	// this time.
    	lockRankMayTraceFlush()
    
    	// Prevent preemption.
    	mp := acquirem()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/pgen.go

    		return
    	}
    
    	pp.Flush() // assemble, fill in boilerplate, etc.
    
    	// If we're compiling the package init function, search for any
    	// relocations that target global map init outline functions and
    	// turn them into weak relocs.
    	if fn.IsPackageInit() && base.Debug.WrapGlobalMapCtl != 1 {
    		weakenGlobalMapInitRelocs(fn)
    	}
    
    	// fieldtrack must be called after pp.Flush. See issue 20014.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. 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)
  4. src/net/http/client_test.go

    func testStreamingGet(t *testing.T, mode testMode) {
    	say := make(chan string)
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.(Flusher).Flush()
    		for str := range say {
    			w.Write([]byte(str))
    			w.(Flusher).Flush()
    		}
    	}))
    
    	c := cst.c
    	res, err := c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	var buf [10]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server.go

    		return
    	}
    
    	if _, ok := response.ResponseWriter.(http.Flusher); !ok {
    		response.WriteError(http.StatusInternalServerError, fmt.Errorf("unable to convert %v into http.Flusher, cannot show logs", reflect.TypeOf(response)))
    		return
    	}
    	fw := flushwriter.Wrap(response.ResponseWriter)
    	response.Header().Set("Transfer-Encoding", "chunked")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    * Fix issue where masquerade rules are flushed in GCE k8s clusters. ([#56729](https://github.com/kubernetes/kubernetes/pull/56729), [@dnardo](https://github.com/dnardo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "org.mK",
              "us",
              "co.uk.", // Trailing dot
              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
              "j\u00f8rpeland.no", // "jorpeland.no" (first o slashed)
              "xn--jrpeland-54a.no"); // IDNA (punycode) encoding of above
    
      private static final ImmutableSet<String> PS_NOT_RS =
          ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/runtime/mstats.go

    	*pauses = p[:n+n+3]
    }
    
    // flushmcache flushes the mcache of allp[i].
    //
    // The world must be stopped.
    //
    //go:nowritebarrier
    func flushmcache(i int) {
    	assertWorldStopped()
    
    	p := allp[i]
    	c := p.mcache
    	if c == nil {
    		return
    	}
    	c.releaseAll()
    	stackcache_clear(c)
    }
    
    // flushallmcaches flushes the mcaches of all Ps.
    //
    // The world must be stopped.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                    other platforms, including Windows.
    //
    // Logging:
    //   GTEST_LOG_()   - logs messages at the specified severity level.
    //   LogToStderr()  - directs all log messages to stderr.
    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NewTLSServer", Func, 0},
    		{"NewUnstartedServer", Func, 0},
    		{"ResponseRecorder", Type, 0},
    		{"ResponseRecorder.Body", Field, 0},
    		{"ResponseRecorder.Code", Field, 0},
    		{"ResponseRecorder.Flushed", Field, 0},
    		{"ResponseRecorder.HeaderMap", Field, 0},
    		{"Server", Type, 0},
    		{"Server.Config", Field, 0},
    		{"Server.EnableHTTP2", Field, 14},
    		{"Server.Listener", Field, 0},
    		{"Server.TLS", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top