Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,005 for Receive (0.26 sec)

  1. manifests/charts/gateways/istio-ingress/files/profile-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
    - 883 bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/files/profile-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
    - 883 bytes
    - Viewed (0)
  3. src/runtime/testdata/testwinsignal/main.go

    	// even if the expected signal never arrives.
    	go func() {
    		io.Copy(io.Discard, os.Stdin)
    		log.Fatal("stdin is closed; terminating")
    	}()
    
    	// Register to receive all signals.
    	c := make(chan os.Signal, 1)
    	signal.Notify(c)
    
    	// Get console window handle.
    	kernel32 := syscall.NewLazyDLL("kernel32.dll")
    	getConsoleWindow := kernel32.NewProc("GetConsoleWindow")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/ReproducibleFileVisitor.java

    /**
     * Visitor which can request a reproducible file order.
     *
     * @since 3.4
     */
    public interface ReproducibleFileVisitor extends FileVisitor {
        /**
         * Whether the {@link FileVisitor} should receive the files in a reproducible order independent of the underlying file system.
         *
         * @return <code>true</code> if files should be walked in a reproducible order.
         */
        boolean isReproducibleFileOrder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/internal/DisconnectableInputStream.java

    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * An {@code InputStream} which reads from the source {@code InputStream}. In addition, when the {@code InputStream} is
     * closed, all threads blocked reading from the stream will receive an end-of-stream.
     */
    public class DisconnectableInputStream extends BulkReadInputStream {
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/openapi-webhooks.md

    This can make it a lot easier for your users to **implement their APIs** to receive your **webhook** requests, they might even be able to autogenerate some of their own API code.
    
    !!! info
        Webhooks are available in OpenAPI 3.1.0 and above, supported by FastAPI `0.99.0` and above.
    
    ## An app with webhooks
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. test/chan/fifo.go

    package main
    
    import "os"
    
    const N = 10
    
    func AsynchFifo() {
    	ch := make(chan int, N)
    	for i := 0; i < N; i++ {
    		ch <- i
    	}
    	for i := 0; i < N; i++ {
    		if <-ch != i {
    			print("bad receive\n")
    			os.Exit(1)
    		}
    	}
    }
    
    func Chain(ch <-chan int, val int, in <-chan int, out chan<- int) {
    	<-in
    	if <-ch != val {
    		panic(val)
    	}
    	out <- 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 22:35:07 UTC 2017
    - 896 bytes
    - Viewed (0)
  8. docs_src/custom_request_and_route/tutorial001.py

            original_route_handler = super().get_route_handler()
    
            async def custom_route_handler(request: Request) -> Response:
                request = GzipRequest(request.scope, request.receive)
                return await original_route_handler(request)
    
            return custom_route_handler
    
    
    app = FastAPI()
    app.router.route_class = GzipRoute
    
    
    @app.post("/sum")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 973 bytes
    - Viewed (0)
  9. test/chan/sieve2.go

    	*h, v = (*h)[:h.Len()-1], (*h)[h.Len()-1]
    	return
    }
    
    func (h *PeekChHeap) Push(v interface{}) {
    	*h = append(*h, v.(*PeekCh))
    }
    
    // Return a channel to serve as a sending proxy to 'out'.
    // Use a goroutine to receive values from 'out' and store them
    // in an expanding buffer, so that sending to 'out' never blocks.
    func sendproxy(out chan<- int) chan<- int {
    	proxy := make(chan int, 10)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockCommunicator.java

            }
            return pingSentSuccessfully;
        }
    
        public DatagramPacket receive() throws GracefullyStoppedException {
            try {
                byte[] bytes = new byte[FileLockPacketPayload.MAX_BYTES];
                DatagramPacket packet = new DatagramPacket(bytes, bytes.length);
                socket.receive(packet);
                return packet;
            } catch (IOException e) {
                if (!stopped) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top