Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,005 for Receive (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/plugin/software/internal/ConventionReceiver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugin.software.internal;
    
    /**
     * Marker interface for objects that can receive conventions of a certain type and apply them appropriately.
     *
     * @since 8.9
     */
    public interface ConventionReceiver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 837 bytes
    - Viewed (0)
  2. test/fixedbugs/issue8336.go

    // run
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 8336. Order of evaluation of receive channels in select.
    
    package main
    
    type X struct {
    	c chan int
    }
    
    func main() {
    	defer func() {
    		recover()
    	}()
    	var x *X
    	select {
    	case <-x.c: // should fault and panic before foo is called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 515 bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

            then:
            noExceptionThrown()
        }
    
        def "can receive request for lock that is already closed"() {
            when:
            int port = handler.reservePort()
            handler.start(10, { assert false })
            sleep(300) //so that it starts receiving
    
            //close the lock
            handler.stop(10)
    
            //receive request for lock that is already closed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/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)
  5. docs/en/docs/tutorial/request-files.md

    # Request Files
    
    You can define files to be uploaded by the client using `File`.
    
    !!! info
        To receive uploaded files, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        E.g. `pip install python-multipart`.
    
        This is because uploaded files are sent as "form data".
    
    ## Import `File`
    
    Import `File` and `UploadFile` from `fastapi`:
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. test/chan/sendstmt.go

    	sendprec()
    }
    
    func chanchan() {
    	cc := make(chan chan int, 1)
    	c := make(chan int, 1)
    	cc <- c
    	select {
    	case <-cc <- 2:
    	default:
    		panic("nonblock")
    	}
    	if <-c != 2 {
    		panic("bad receive")
    	}
    }
    
    func sendprec() {
    	c := make(chan bool, 1)
    	c <- false || true // not a syntax error: same as c <- (false || true)
    	if !<-c {
    		panic("sent false")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 02:39:16 UTC 2017
    - 672 bytes
    - Viewed (0)
  7. manifests/charts/base/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)
  8. manifests/charts/gateway/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)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	try := func(action watch.EventType, object runtime.Object) {
    		// Send
    		simpleStorage.fakeWatch.Action(action, object)
    		// Test receive
    		var got watchJSON
    		err := websocket.JSON.Receive(ws, &got)
    		if err != nil {
    			t.Fatalf("Unexpected error: %v", err)
    		}
    		if got.Type != action {
    			t.Errorf("Unexpected type: %v", got.Type)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/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)
Back to top