Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 145 for seni (0.13 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

            throw new DfsReferral(dr);
        }
    
    
        <T extends CommonServerMessageBlockResponse> T send ( CommonServerMessageBlockRequest request, T response ) throws SmbException {
            return send(request, response, Collections.<RequestParam> emptySet());
        }
    
    
        <T extends CommonServerMessageBlockResponse> T send ( CommonServerMessageBlockRequest request, T response, Set<RequestParam> params )
                throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	switch s := condStmt.(type) {
    	case nil:
    		if keyword == _If && semi.pos.IsKnown() {
    			if semi.lit != "semicolon" {
    				p.syntaxErrorAt(semi.pos, fmt.Sprintf("unexpected %s, expected { after if clause", semi.lit))
    			} else {
    				p.syntaxErrorAt(semi.pos, "missing condition in if statement")
    			}
    			b := new(BadExpr)
    			b.pos = semi.pos
    			cond = b
    		}
    	case *ExprStmt:
    		cond = s.X
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

      }
    
      /**
       * Webservers may set the initial window size to zero, which is a special case because it means
       * that we have to flush headers immediately before any request body can be sent.
       * https://github.com/square/okhttp/issues/2543
       */
      @Test fun peerSetsZeroFlowControl() {
        peer.setClient(true)
    
        // Write the mocking script.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

    import okhttp3.internal.ws.RealWebSocket
    import okio.Sink
    import okio.Source
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    
    /**
     * Factory for [calls][Call], which can be used to send HTTP requests and read their responses.
     *
     * ## OkHttpClients Should Be Shared
     *
     * OkHttp performs best when you create a single `OkHttpClient` instance and reuse it for all of
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter_test.go

    			}
    			if vol.VolumeHandle != csiMounter.volumeID {
    				t.Error("volumeHandle not sent to CSI driver properly")
    			}
    
    			devicePath, err := makeDeviceMountPath(plug, csiMounter.spec)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if vol.DeviceMountPath != devicePath {
    				t.Errorf("DeviceMountPath not sent properly to CSI driver: %s, %s", vol.DeviceMountPath, devicePath)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    	// doesn't know what content it is going to send--the ResponseWriter is modifying
    	// the bytes sent.
    	//
    	// Range requests are always going to be broken in this scenario,
    	// but verify that we can serve non-range requests correctly.
    	filename := "index.html"
    	contents := []byte("contents will be sent with Content-Encoding: gzip")
    	fsys := fstest.MapFS{
    		filename: {Data: contents},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    		want                         string
    	}{
    		// don't send user:
    		{lastReq: "http://******@****.***", newReq: "http://link.com", want: "http://test.com"},
    		{lastReq: "https://******@****.***", newReq: "https://link.com", want: "https://test.com"},
    
    		// don't send a user and password:
    		{lastReq: "http://gopher:******@****.***", newReq: "http://link.com", want: "http://test.com"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	// ProxyUpdate is called to notify the XDS server to send a push to the specified proxy.
    	// The requests may be collapsed and throttled.
    	ProxyUpdate(clusterID cluster.ID, ip string)
    
    	// RemoveShard removes all endpoints for the given shard key
    	RemoveShard(shardKey ShardKey)
    }
    
    // PushRequest defines a request to push to proxies
    // It is used to send updates to the config update debouncer and pass to the PushQueue.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    					recursive:      true,
    					forwardTo:      opts.Marker,
    					minDisks:       listingQuorum,
    					reportNotFound: false,
    					agreed:         send,
    					partial: func(entries metaCacheEntries, _ []error) {
    						entry, ok := entries.resolve(&resolver)
    						if ok {
    							send(*entry)
    						}
    					},
    					finished: nil,
    				}
    
    				if err := listPathRaw(ctx, lopts); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. src/net/http/httputil/reverseproxy_test.go

    			want: 123,
    		},
    		{
    			name: "server-sent events overrides non-zero",
    			res: &http.Response{
    				Header: http.Header{
    					"Content-Type": {"text/event-stream"},
    				},
    			},
    			p:    &ReverseProxy{FlushInterval: 123},
    			want: -1,
    		},
    		{
    			name: "server-sent events overrides zero",
    			res: &http.Response{
    				Header: http.Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top