Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 608 for seni (0.58 sec)

  1. cmd/global-heal.go

    			default:
    				return false
    			}
    		}
    
    		send := func(result healEntryResult) bool {
    			select {
    			case <-ctx.Done():
    				if !contextCanceled(ctx) {
    					healingLogIf(ctx, ctx.Err())
    				}
    				return false
    			case results <- result:
    				return true
    			}
    		}
    
    		// Note: updates from healEntry to tracker must be sent on results channel.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. internal/grid/handlers.go

    	// Buffers sent on out can not be referenced once sent.
    	StreamHandlerFn func(ctx context.Context, payload []byte, in <-chan []byte, out chan<- []byte) *RemoteErr
    
    	// StreamHandler handles fully bidirectional streams,
    	// There is flow control in both directions.
    	StreamHandler struct {
    		// Handle an incoming request. Initial payload is sent.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/time/tick_test.go

    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		defer close(outQ)
    		var q []func()
    		for {
    			var sendTo chan func()
    			var send func()
    			if len(q) > 0 {
    				sendTo = outQ
    				send = q[0]
    			}
    			select {
    			case sendTo <- send:
    				q = q[1:]
    			case f, ok := <-inQ:
    				if !ok {
    					return
    				}
    				q = append(q, f)
    			case <-done:
    				return
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/calloptions.go

    	// It is mandatory to specify TLS settings
    	HTTP3 bool
    
    	// Path specifies the URL path for the HTTP(s) request.
    	Path string
    
    	// Method to send. Defaults to GET.
    	Method string
    
    	// Headers indicates headers that should be sent in the request. Ignored for WebSocket calls.
    	// If no Host header is provided, a default will be chosen for the target service endpoint.
    	Headers http.Header
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. docs/tr/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### Özet
    
    Özetlemek gerekirse, parametrelerin, gövdenin, vb. veri tiplerini fonksiyon parametreleri olarak **bir kere** tanımlıyoruz.
    
    Bu işlemi standart modern Python tipleriyle yapıyoruz.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

     *
     * Use {@link #getOutgoing(String, Class)} to create a {@link Dispatch} to send unicast messages on a given channel.
     * Use {@link #addHandler(String, Object)} to create a worker for incoming messages on a given channel.
     * Use {@link #addConnection(RemoteConnection)} to attach another router to this router.
     *
     * TODO - this type could be simplified, as there is no longer any need to send/receive messages to/from multiple connections
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

        /**
         * Apply inbound settings and send an acknowledgement to the peer that provided them.
         *
         * We need to apply the settings and ack them atomically. This is because some HTTP/2
         * implementations (nghttp2) forbid peers from taking advantage of settings before they have
         * acknowledged! In particular, we shouldn't send frames that assume a new `initialWindowSize`
         * until we send the frame that acknowledges this new size.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    // - get current objects if initialRev=0; set initialRev to current rev
    // - watch on given key and send events to process.
    //
    // initialEventsEndBookmarkSent helps us keep track
    // of whether we have sent an annotated bookmark event.
    //
    // it's important to note that we don't
    // need to track the actual RV because
    // we only send the bookmark event
    // after the initial list call.
    //
    // when this variable is set to false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top