Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for flushed (0.15 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/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)
  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. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top