Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,978 for seni (0.04 sec)

  1. src/crypto/tls/handshake_server.go

    			certReq.supportedSignatureAlgorithms = supportedSignatureAlgorithms()
    		}
    
    		// An empty list of certificateAuthorities signals to
    		// the client that it may send any certificate in response
    		// to our request. When we know the CAs we trust, then
    		// we can send them down, so that the client can choose
    		// an appropriate certificate to give to us.
    		if c.config.ClientCAs != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
    
        <T extends CommonServerMessageBlockResponse> T send ( CommonServerMessageBlockRequest request, T response ) throws CIFSException {
            return send(request, response, Collections.<RequestParam> emptySet());
        }
    
    
        <T extends CommonServerMessageBlockResponse> T send ( CommonServerMessageBlockRequest request, T response, Set<RequestParam> params )
                throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LoadingCache.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.util.concurrent.ConcurrentMap;
    import java.util.concurrent.ExecutionException;
    
    /**
     * A semi-persistent mapping from keys to values. Values are automatically loaded by the cache, and
     * are stored in the cache until either evicted or manually invalidated. The common way to build
     * instances is using {@link CacheBuilder}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

        /**
         * <p>Streams an object to the client application.
         *
         * <p>The client application can receive objects sent using this method by registering a {@link StreamedValueListener}.
         * The client application receives objects in the order they were sent, and before it receives the result of the {@link BuildAction}.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    		// we're writing serialized watch events, this will never happen here.
    		if err := websocket.Message.Send(w.ws, string(p)); err != nil {
    			return 0, err
    		}
    		return len(p), nil
    	}
    	if err := websocket.Message.Send(w.ws, p); err != nil {
    		return 0, err
    	}
    	return len(p), nil
    }
    
    var _ io.Writer = &websocketFramer{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    		upstreamError:   make(chan error), // can be produced by recv and send
    		downstreamError: make(chan error), // can be produced by recv and send
    		// Requests channel is unbounded. The Envoy<->XDS Proxy<->Istiod system produces a natural
    		// looping of Recv and Send. Due to backpressure introduced by gRPC natively (that is, Send() can
    		// only send so much data without being Recv'd before it starts blocking), along with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

         * @param debugData only valid for HTTP/2; opaque debug data to send.
         */
        fun goAway(
          lastGoodStreamId: Int,
          errorCode: ErrorCode,
          debugData: ByteString,
        )
    
        /**
         * Notifies that an additional `windowSizeIncrement` bytes can be sent on `streamId`, or the
         * connection if `streamId` is zero.
         */
        fun windowUpdate(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/DuplexTest.kt

          object : RecordingEventListener() {
            override fun responseHeadersEnd(
              call: Call,
              response: Response,
            ) {
              try {
                // Wait for the server to send the duplex response before acting on the 301 response
                // and resetting the stream.
                duplexResponseSent.await()
              } catch (e: InterruptedException) {
                throw AssertionError()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	// Thus explicit calls to WriteHeader are mainly used to
    	// send error codes or 1xx informational responses.
    	//
    	// The provided code must be a valid HTTP 1xx-5xx status code.
    	// Any number of 1xx headers may be written, followed by at most
    	// one 2xx-5xx header. 1xx headers are sent immediately, but 2xx-5xx
    	// headers may be buffered. Use the Flusher interface to send
    	// buffered data. The header map is cleared when 2xx-5xx headers are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body-updates.md

    You can also use the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH" class="external-link" target="_blank">HTTP `PATCH`</a> operation to *partially* update data.
    
    This means that you can send only the data that you want to update, leaving the rest intact.
    
    !!! note
        `PATCH` is less commonly used and known than `PUT`.
    
        And many teams use only `PUT`, even for partial updates.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top