Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for keystream (0.17 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // DATA STREAM 3
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
        val stream1 = connection.newStream(headerEntries("a", "android"), true)
        val stream2 = connection.newStream(headerEntries("b", "banana"), true)
        connection.writePingAndAwaitPong() // Ensure the GO_AWAY that resets stream2 has been received.
        val sink1 = stream1.getSink().buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    	// STREAMS
    	// Set an output capacity of 100 for consoleLog and listenRPC
    	// There is another buffer that will buffer events.
    	consoleLogRPC = grid.NewStream[*grid.MSS, grid.NoPayload, *grid.Bytes](grid.HandlerConsoleLog, grid.NewMSS, nil, grid.NewBytes).WithOutCapacity(100)
    	listenRPC     = grid.NewStream[*grid.URLValues, grid.NoPayload, *grid.Bytes](grid.HandlerListen, grid.NewURLValues, nil, grid.NewBytes).WithOutCapacity(100)
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      ~GTestLog();
    
      ::std::ostream& GetStream() { return ::std::cerr; }
    
     private:
      const GTestLogSeverity severity_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog);
    };
    
    #define GTEST_LOG_(severity) \
        ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
                                      __FILE__, __LINE__).GetStream()
    
    inline void LogToStderr() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      ~GTestLog();
    
      ::std::ostream& GetStream() { return ::std::cerr; }
    
     private:
      const GTestLogSeverity severity_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog);
    };
    
    #define GTEST_LOG_(severity) \
        ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
                                      __FILE__, __LINE__).GetStream()
    
    inline void LogToStderr() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top