Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for WriteRequest (0.17 sec)

  1. src/net/rpc/client.go

    	shutdown bool // server has told us to stop
    }
    
    // A ClientCodec implements writing of RPC requests and
    // reading of RPC responses for the client side of an RPC session.
    // The client calls [ClientCodec.WriteRequest] to write a request to the connection
    // and calls [ClientCodec.ReadResponseHeader] and [ClientCodec.ReadResponseBody] in pairs
    // to read responses. The client calls [ClientCodec.Close] when finished with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/net/rpc/client_test.go

    package rpc
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"strings"
    	"testing"
    )
    
    type shutdownCodec struct {
    	responded chan int
    	closed    bool
    }
    
    func (c *shutdownCodec) WriteRequest(*Request, any) error { return nil }
    func (c *shutdownCodec) ReadResponseBody(any) error       { return nil }
    func (c *shutdownCodec) ReadResponseHeader(*Response) error {
    	c.responded <- 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

    import okio.Sink
    import okio.Source
    import okio.Timeout
    
    /**
     * A socket connection that can be used to send HTTP/1.1 messages. This class strictly enforces the
     * following lifecycle:
     *
     *  1. [Send request headers][writeRequest].
     *  2. Open a sink to write the request body. Either [known][newKnownLengthSink] or
     *     [chunked][newChunkedSink].
     *  3. Write to and then close that sink.
     *  4. [Read response headers][readResponseHeaders].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/net/rpc/jsonrpc/client.go

    		pending: make(map[uint64]string),
    	}
    }
    
    type clientRequest struct {
    	Method string `json:"method"`
    	Params [1]any `json:"params"`
    	Id     uint64 `json:"id"`
    }
    
    func (c *clientCodec) WriteRequest(r *rpc.Request, param any) error {
    	c.mutex.Lock()
    	c.pending[r.Seq] = r.ServiceMethod
    	c.mutex.Unlock()
    	c.req.Method = r.ServiceMethod
    	c.req.Params[0] = param
    	c.req.Id = r.Seq
    	return c.enc.Encode(&c.req)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsUrlQueueService.java

    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.action.support.WriteRequest.RefreshPolicy;
    import org.opensearch.action.update.UpdateRequestBuilder;
    import org.opensearch.common.unit.TimeValue;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.SearchHit;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.index.IndexAction;
    import org.opensearch.action.index.IndexRequestBuilder;
    import org.opensearch.action.support.WriteRequest;
    import org.opensearch.client.Client;
    
    public class SuggesterTest {
        static Suggester suggester;
    
        static OpenSearchRunner runner;
    
        @BeforeClass
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

              sink = sink,
            )
          source.timeout().timeout(readTimeoutMillis.toLong(), TimeUnit.MILLISECONDS)
          sink.timeout().timeout(writeTimeoutMillis.toLong(), TimeUnit.MILLISECONDS)
          tunnelCodec.writeRequest(nextRequest.headers, requestLine)
          tunnelCodec.finishRequest()
          val response =
            tunnelCodec.readResponseHeaders(false)!!
              .request(nextRequest)
              .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

    import org.opensearch.action.index.IndexResponse;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.action.support.WriteRequest.RefreshPolicy;
    import org.opensearch.action.support.master.AcknowledgedResponse;
    import org.opensearch.cluster.metadata.MappingMetadata;
    import org.opensearch.common.unit.TimeValue;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    	callerGone <-chan struct{} // closed when roundTrip caller has returned
    }
    
    // A writeRequest is sent by the caller's goroutine to the
    // writeLoop's goroutine to write a request while the read loop
    // concurrently waits on both the write response and the server's
    // reply.
    type writeRequest struct {
    	req *transportRequest
    	ch  chan<- error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. src/net/rpc/server_test.go

    	} else if !strings.Contains(err.Error(), "pointer") {
    		t.Error("expected hint when registering NeedsPtrType")
    	}
    }
    
    type WriteFailCodec int
    
    func (WriteFailCodec) WriteRequest(*Request, any) error {
    	// the panic caused by this error used to not unlock a lock.
    	return errors.New("fail")
    }
    
    func (WriteFailCodec) ReadResponseHeader(*Response) error {
    	select {}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top