Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for stream_id (0.22 sec)

  1. src/cmd/go/testdata/script/test_fail_newline.txt

    # Check that a newline is printed after the buffer's contents.
    cd fail
    ! go test .
    ! stderr .
    stdout '^exitcode=1\n'
    stdout '^FAIL\s+example/fail'
    
    # In local directory mode output is streamed, so we don't know
    # whether the test printed anything at all, so we print the exit code
    # (just in case it failed without emitting any output at all),
    # and that happens to add the needed newline as well.
    ! go test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 21:33:23 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.h

     private:
      bool UseMultipleStreams() const { return stream_ != host_to_device_stream_; }
    
      // The main compute stream of the device, used to synchronize the transfer
      // streams if they are set.
      std::shared_ptr<se::Stream> stream_;
      // The stream to use for transferring data from host to device. Can be
      // idential to stream_, but must not be nullptr.
      std::shared_ptr<se::Stream> host_to_device_stream_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

          stream_ = global_stream;
        } else {
          // Directly create the stream here instead of borrowing from the stream
          // pool to avoid potential lifetime issues.
          TF_ASSIGN_OR_RETURN(
              stream_,
              backend->stream_executors()[device_ordinal_]->CreateStream());
          TF_RETURN_IF_ERROR(EnsureStreamOkLocked(backend, "stream", &stream_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_host_send_device_context.h

     public:
      XlaHostSendDeviceContext(
          se::Stream* stream, se::DeviceMemoryBase* device_memory_base,
          const xla::Shape& shape,
          tsl::AsyncValueRef<std::unique_ptr<se::Event>>& done_event)
          : stream_(stream),
            device_memory_base_(device_memory_base),
            shape_(shape),
            done_event_(done_event) {}
    
      // Copies 'cpu_tensor' to `device_memory_base_` with `shape_`.
      // `device_tensor` is unused.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. cmd/testdata/xl-meta-consist.zip

    Sé6¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistš ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ò 'ªPartASizes‘Ò '¤SizeÒ 'Â¥MTimeÓ ¿W '’žÉ§MetaSys ¼X-Minio-Internal-actual-sizeÄ 141250§MetaUsr‚¤etagÙ"51fe09d68bacc8c5a68a-1¬content-type¸application/octet-streamÎ-ú^ 6/xl.meta XL2 Æ b ¨Versions‘‚¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ÔLã°ê8EÒŸˆ”Ù Sé6¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistš ¨CSumAlgo ¨PartNums‘ ©PartETags‘ ©PartSizes‘Ò 'ªPartASizes‘Ò '¤SizeÒ 'Â¥MTimeÓ ¿W '’žÉ§MetaSys ¼X-Minio-Internal-actual-sizeÄ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 19 18:48:00 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_host_recv_device_context.h

     public:
      XlaHostRecvDeviceContext(
          se::Stream* stream, const se::DeviceMemoryBase& device_memory_base,
          const xla::Shape& shape,
          tsl::AsyncValueRef<std::unique_ptr<se::Event>>& done_event)
          : stream_(stream),
            device_memory_base_(device_memory_base),
            shape_(shape),
            done_event_(done_event) {}
    
      void CopyCPUTensorToDevice(const Tensor* cpu_tensor, Device* device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

        def setup() {
            file("settings.gradle") << 'rootProject.name="hello-world"'
        }
    
        def "models are streamed on build action cache hit"() {
            def listener1 = new TestStreamedValueListener()
            def listener2 = new TestStreamedValueListener()
    
            when:
            withIsolatedProjects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    //
    //   1. You stream a bunch of values to a Message object.
    //      It will remember the text in a stringstream.
    //   2. Then you stream the Message object to an ostream.
    //      This causes the text in the Message to be streamed
    //      to the ostream.
    //
    // For example;
    //
    //   testing::Message foo;
    //   foo << 1 << " != " << 2;
    //   std::cout << foo;
    //
    // will print "1 != 2".
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    //
    //   1. You stream a bunch of values to a Message object.
    //      It will remember the text in a stringstream.
    //   2. Then you stream the Message object to an ostream.
    //      This causes the text in the Message to be streamed
    //      to the ostream.
    //
    // For example;
    //
    //   testing::Message foo;
    //   foo << 1 << " != " << 2;
    //   std::cout << foo;
    //
    // will print "1 != 2".
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. pkg/client/tests/remotecommand_test.go

    			var name string
    			if exec {
    				name = testCase.TestName + " (exec)"
    			} else {
    				name = testCase.TestName + " (attach)"
    			}
    
    			t.Run(name, func(t *testing.T) {
    				var (
    					streamIn             io.Reader
    					streamOut, streamErr io.Writer
    				)
    				localOut := &bytes.Buffer{}
    				localErr := &bytes.Buffer{}
    
    				requestReceived := make(chan struct{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top