Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,076 for Receive (0.16 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

     *
     * <p>Implementations are thread-safe: A listener is notified by at most 1 thread at a time, and so do not need to be thread-safe. All listeners
     * of a given type receive events in the same order. Listeners can be added and removed at any time.
     */
    @ServiceScope(Scope.Global.class)
    public interface ListenerManager {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. docs/em/docs/how-to/custom-request-and-route.md

    ```
    
    !!! note "πŸ“‘ β„Ή"
         `Request` βœ”οΈ `request.scope` πŸ”’, πŸ‘ˆ 🐍 `dict` βš— πŸ—ƒ πŸ”— πŸ“¨.
    
         `Request` βœ”οΈ `request.receive`, πŸ‘ˆ πŸ”’ "πŸ“¨" πŸ’ͺ πŸ“¨.
    
         `scope` `dict` &amp; `receive` πŸ”’ πŸ‘―β€β™‚οΈ πŸ• πŸ”« πŸ”§.
    
         &amp; πŸ‘ˆ 2️⃣ πŸ‘œ, `scope` &amp; `receive`, βš«οΈβ” πŸ’ͺ ✍ πŸ†• `Request` πŸ‘.
    
        πŸ’‘ πŸŒ… πŸ”ƒ `Request` βœ… <a href="https://www.starlette.io/requests/" class="external-link" target="_blank">πŸ’ƒ 🩺 πŸ”ƒ πŸ“¨</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body-updates.md

        {!> ../../../docs_src/body_updates/tutorial001_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="30-35"
        {!> ../../../docs_src/body_updates/tutorial001.py!}
        ```
    
    `PUT` is used to receive data that should replace the existing data.
    
    ### Warning about replacing
    
    That means that if you want to update the item `bar` using `PUT` with a body containing:
    
    ```Python
    {
        "name": "Barz",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

        /**
         * Serialize the <code>message</code> onto the provided <code>outputStream</code>, replacing all {@link Throwable}s in the object graph with a placeholder object that can be read back by {@link
         * #receive(java.io.InputStream, ClassLoader)}.
         *
         * @param message object to serialize
         * @param outputSteam stream to serialize onto
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/custom-request-and-route.md

        Ein `Request` hat auch ein `request.receive`, welches eine Funktion ist, die den Hauptteil des Requests empfΓ€ngt.
    
        Das `scope`-`dict` und die `receive`-Funktion sind beide Teil der ASGI-Spezifikation.
    
        Und diese beiden Dinge, `scope` und `receive`, werden benΓΆtigt, um eine neue `Request`-Instanz zu erstellen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. manifests/helm-profiles/openshift-ambient.yaml

      logLevel: info
      provider: "multus"
    pilot:
      cni:
        enabled: true
        provider: "multus"
      variant: distroless
      env:
        PILOT_ENABLE_AMBIENT: "true"
        # Allow sidecars/ingress to send/receive HBONE. This is required for interop.
        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 664 bytes
    - Viewed (0)
  7. tests/integration/helm/install_test.go

    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    			err := t.ConfigIstio().Eval("default", nil, sampleEnvoyFilter).Apply()
    			if err == nil {
    				t.Errorf("Did not receive an error while applying sample EnvoyFilter with stable admission policy")
    			} else {
    				msg := fmt.Sprintf(expectedErrorPrefix, "envoyfilters.networking.istio.io")
    				if !strings.Contains(err.Error(), msg) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	supportsStreamClose := protocolSupportsStreamClose(conn.selectedProtocol)
    
    	for {
    		conn.resetTimeout()
    		var data []byte
    		if err := websocket.Message.Receive(ws, &data); err != nil {
    			if err != io.EOF {
    				klog.Errorf("Error on socket receive: %v", err)
    			}
    			break
    		}
    		if len(data) == 0 {
    			continue
    		}
    		if supportsStreamClose && data[0] == remotecommand.StreamClose {
    			if len(data) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

                'Did not receive all expected requests. Waiting for 1 further requests, received [], released [], not yet received [GET /a]',
                'Did not receive all expected requests. Waiting for 1 further requests, received [], released [], not yet received [GET /b]',
                'Did not receive all expected requests. Waiting for 1 further requests, received [], released [], not yet received [GET /c, GET /d]',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/apigen/apigen_test.go

    // to represent the names. The protocol is based on GRPC resolution of XDS resources.
    func TestAPIGen(t *testing.T) {
    	ds := initDS(t)
    
    	// Verify we can receive the DNS cluster IPs using XDS
    	t.Run("adsc", func(t *testing.T) {
    		proxy := &model.Proxy{Metadata: &model.NodeMetadata{
    			Generator: "api",
    		}}
    		adscConn := ds.ConnectUnstarted(ds.SetupProxy(proxy), xds.APIWatches())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top