Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for seni (0.33 sec)

  1. src/net/http/request.go

    	// by the client.
    	//
    	// For client requests, Trailer must be initialized to a map containing
    	// the trailer keys to later send. The values may be nil or their final
    	// values. The ContentLength must be 0 or -1, to send a chunked request.
    	// After the HTTP request is sent the map values can be updated while
    	// the request body is read. Once the body returns EOF, the caller must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K 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. src/crypto/tls/conn.go

    	// clientFinishedIsFirst is true if the client sent the first Finished
    	// message during the most recent handshake. This is recorded because
    	// the first transmitted Finished message is the tls-unique
    	// channel-binding value.
    	clientFinishedIsFirst bool
    
    	// closeNotifyErr is any error from sending the alertCloseNotify record.
    	closeNotifyErr error
    	// closeNotifySent is true if the Conn attempted to send an
    	// alertCloseNotify record.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		server, requestGetter := newHTTP2ServerWithClient(handler, time.Minute)
    		defer server.Close()
    
    		// send a request synchronously with a client timeout of 1m,  this minimizes the
    		// chance of a flake in ci, the cient waits long enough for the server to send a
    		// timeout response to the client.
    		var (
    			response *http.Response
    			err      error
    		)
    		func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    // tests work.
    
    // opensslInputEvent enumerates possible inputs that can be sent to an `openssl
    // s_client` process.
    type opensslInputEvent int
    
    const (
    	// opensslRenegotiate causes OpenSSL to request a renegotiation of the
    	// connection.
    	opensslRenegotiate opensslInputEvent = iota
    
    	// opensslSendBanner causes OpenSSL to send the contents of
    	// opensslSentinel on the connection.
    	opensslSendSentinel
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    	// the client. It's available both on the server and on the client side.
    	ServerName string
    
    	// PeerCertificates are the parsed certificates sent by the peer, in the
    	// order in which they were sent. The first element is the leaf certificate
    	// that the connection is verified against.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    		// Conceivably, it's one that doesn't need us to send the body.
    		// Given that we'll send the body if ExpectContinueTimeout expires,
    		// be consistent and always send it if we aren't closing the connection.
    		if resp.Close || rc.treq.Request.Close {
    			close(continueCh) // don't send the body; the connection will close
    		} else {
    			continueCh <- struct{}{} // send the body
    		}
    	}
    
    	resp.TLS = pc.tlsState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"allowWatchBookmarks":  "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    		condStmt = init
    		init = nil
    	}
    
    	if condStmt != nil {
    		cond = p.makeExpr(condStmt, "boolean expression")
    	} else if semi.pos.IsValid() {
    		if semi.lit == "\n" {
    			p.error(semi.pos, "unexpected newline, expecting { after if clause")
    		} else {
    			p.error(semi.pos, "missing condition in if statement")
    		}
    	}
    
    	// make sure we have a valid AST
    	if cond == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

                        req.setCreateDisposition(Smb2CreateRequest.FILE_OPEN);
                        req.chain(new Smb2CloseRequest(th.getConfig(), fileName));
                        th.send(req);
                    }
                    else {
                        th.send(new SmbComDeleteDirectory(th.getConfig(), fileName), new SmbComBlankResponse(th.getConfig()));
                    }
                }
                else {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top