Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,150 for IsStream (0.16 sec)

  1. mockwebserver/src/main/kotlin/mockwebserver3/Stream.kt

     */
    @ExperimentalOkHttpApi
    interface Stream {
      val requestBody: BufferedSource
      val responseBody: BufferedSink
    
      /**
       * Terminate the stream so that no further data is transmitted or received. Note that
       * [requestBody] may return data after this call; that is the buffered data received before this
       * stream was canceled.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    	return channels
    }
    
    // readChannel returns wsstream.ReadChannel if real is true, or wsstream.IgnoreChannel.
    func readChannel(real bool) wsstream.ChannelType {
    	if real {
    		return wsstream.ReadChannel
    	}
    	return wsstream.IgnoreChannel
    }
    
    // writeChannel returns wsstream.WriteChannel if real is true, or wsstream.IgnoreChannel.
    func writeChannel(real bool) wsstream.ChannelType {
    	if real {
    		return wsstream.WriteChannel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. docs/debugging/inspect/decrypt-v2.go

    	}
    	extracted := false
    	for {
    		stream, err := sr.NextStream()
    		if err != nil {
    			if err == io.EOF {
    				if extracted {
    					return nil
    				}
    				return errors.New("no data found on stream")
    			}
    			if errors.Is(err, estream.ErrNoKey) {
    				if stream.Name == "inspect.zip" {
    					return errors.New("incorrect private key")
    				}
    				if err := stream.Skip(); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 21:22:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (stream(fessConfig.getIndexBackupAllTargets()).get(stream -> stream.anyMatch(s -> s.equals(id)))) {
                if ("system.properties".equals(id)) {
                    return asStream(id).contentTypeOctetStream().stream(out -> {
                        try (final ByteArrayOutputStream baos = new ByteArrayOutputStream()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. internal/s3select/json/preader.go

    					continue
    				}
    				dst, ok := r.kvDstPool.Get().([]jstream.KVS)
    				if !ok {
    					dst = make([]jstream.KVS, 0, 1000)
    				}
    
    				d := jstream.NewDecoder(bytes.NewBuffer(in.input), 0).ObjectAsKVS()
    				stream := d.Stream()
    				all := dst[:0]
    				for mv := range stream {
    					var kvs jstream.KVS
    					if mv.ValueType == jstream.Object {
    						// This is a JSON object type (that preserves key
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    namespace testing {
    
    // The Message class works like an ostream repeater.
    //
    // Typical usage:
    //
    //   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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    namespace testing {
    
    // The Message class works like an ostream repeater.
    //
    // Typical usage:
    //
    //   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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/wsstream/legacy.go

    // Deprecated: This WebSockets package under apiserver is no longer in use.
    // Please use the apimachinery version of the package at:
    //
    //	k8s.io/apimachinery/pkg/util/httpstream/wsstream
    package wsstream
    
    import apimachinerywsstream "k8s.io/apimachinery/pkg/util/httpstream/wsstream"
    
    // Aliases for all exported symbols previously in "conn.go"
    const (
    	ChannelWebSocketProtocol       = apimachinerywsstream.ChannelWebSocketProtocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

      SP_Event event_handle_;
    };
    
    class CStream : public StreamCommon {
     public:
      CStream(SP_Device* device, SP_StreamExecutor* stream_executor,
              StreamExecutor* executor)
          : StreamCommon(executor),
            device_(device),
            stream_executor_(stream_executor),
            stream_handle_(nullptr) {}
      ~CStream() override {
        parent()->BlockHostUntilDone(this).IgnoreError();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. internal/s3select/json/reader.go

    		}
    		return nil, io.EOF
    	}
    
    	var kvs jstream.KVS
    	if v.ValueType == jstream.Object {
    		// This is a JSON object type (that preserves key
    		// order)
    		kvs = v.Value.(jstream.KVS)
    	} else {
    		// To be AWS S3 compatible Select for JSON needs to
    		// output non-object JSON as single column value
    		// i.e. a map with `_1` as key and value as the
    		// non-object.
    		kvs = jstream.KVS{jstream.KV{Key: "_1", Value: v.Value}}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 24 03:58:53 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top