Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 263 for flushed (0.54 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// This call should block until filesystem confirms that all buffers have
      /// been flushed and persisted.
      ///
      /// DEFAULT IMPLEMENTATION: No op.
      void (*sync)(const TF_WritableFile* file, TF_Status* status);
    
      /// Closes `*file`.
      ///
      /// Flushes all buffers and deallocates all resources.
      ///
      /// Calling `close` must not result in calling `cleanup`.
      ///
      /// Core TensorFlow will never call `close` twice.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    			// thisg.m.p == 0 can happen in the guts of exitsyscall
    			// or procresize. Just get a stack from the global pool.
    			// Also don't touch stackcache during gc
    			// as it's flushed concurrently.
    			lock(&stackpool[order].item.mu)
    			x = stackpoolalloc(order)
    			unlock(&stackpool[order].item.mu)
    		} else {
    			c := thisg.m.p.ptr().mcache
    			x = c.stackcache[order].list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		`)
    	assertNFTablesTransactionEqual(t, getLine(), expected, nft.Dump())
    
    	// Delete a service; its chains will be flushed, but not immediately deleted.
    	fp.OnServiceDelete(svc2)
    	fp.syncProxyRules()
    	expected = baseRules + dedent.Dedent(`
    		add element ip kube-proxy cluster-ips { 172.30.0.41 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flushwriter/writer.go

    package flushwriter
    
    import (
    	"io"
    	"net/http"
    )
    
    // Wrap wraps an io.Writer into a writer that flushes after every write if
    // the writer implements the Flusher interface.
    func Wrap(w io.Writer) io.Writer {
    	fw := &flushWriter{
    		writer: w,
    	}
    	if flusher, ok := w.(http.Flusher); ok {
    		fw.flusher = flusher
    	}
    	return fw
    }
    
    // flushWriter provides wrapper for responseWriter with HTTP streaming capabilities
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 16:09:42 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	statsSeq atomic.Uint32
    
    	// Timer heap.
    	timers timers
    
    	// maxStackScanDelta accumulates the amount of stack space held by
    	// live goroutines (i.e. those eligible for stack scanning).
    	// Flushed to gcController.maxStackScan once maxStackScanSlack
    	// or -maxStackScanSlack is reached.
    	maxStackScanDelta int64
    
    	// gc-time statistics about current goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flushwriter/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package flushwriter implements a wrapper for a writer that flushes on every
    // write if that writer implements the io.Flusher interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 16:14:27 UTC 2017
    - 780 bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertFailsWith<IOException> {
          out.writeUtf8("square")
          out.flush()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("stream was reset: CANCEL")
        }
        // Close throws because buffered data wasn't flushed.
        assertFailsWith<IOException> {
          out.close()
        }
        assertThat(connection.openStreamCount()).isEqualTo(0)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  8. src/testing/testing.go

    			fmt.Fprintf(os.Stderr, "testing: can't write %s: %s\n", *testlog, err)
    			os.Exit(2)
    		}
    	}
    	if *cpuProfile != "" {
    		m.deps.StopCPUProfile() // flushes profile to disk
    	}
    	if *traceFile != "" {
    		trace.Stop() // flushes trace to disk
    	}
    	if *memProfile != "" {
    		f, err := os.Create(toOutputDir(*memProfile))
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "testing: %s\n", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    //     the finalizers.
    //  4. (if not all removals succeeded) flush Job status again.
    //
    // Returns whether there are pending changes in the Job status that need to be
    // flushed in subsequent calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. src/net/http/responsecontroller.go

    }
    
    type rwUnwrapper interface {
    	Unwrap() ResponseWriter
    }
    
    // Flush flushes buffered data to the client.
    func (c *ResponseController) Flush() error {
    	rw := c.rw
    	for {
    		switch t := rw.(type) {
    		case interface{ FlushError() error }:
    			return t.FlushError()
    		case Flusher:
    			t.Flush()
    			return nil
    		case rwUnwrapper:
    			rw = t.Unwrap()
    		default:
    			return errNotSupported()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top