Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,150 for _Receiver (0.51 sec)

  1. test/typeparam/orderedmap.go

    // the receiver stops reading them.
    func _Ranger[Elem any]() (*_Sender[Elem], *_Receiver[Elem]) {
    	c := make(chan Elem)
    	d := make(chan struct{})
    	s := &_Sender[Elem]{
    		values: c,
    		done:   d,
    	}
    	r := &_Receiver[Elem]{
    		values: c,
    		done:   d,
    	}
    	runtime.SetFinalizer(r, (*_Receiver[Elem]).finalize)
    	return s, r
    }
    
    // A _Sender is used to send values to a Receiver.
    type _Sender[Elem any] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. test/typeparam/chans.go

    // the receiver stops reading them.
    func _Ranger[Elem any]() (*_Sender[Elem], *_Receiver[Elem]) {
    	c := make(chan Elem)
    	d := make(chan struct{})
    	s := &_Sender[Elem]{
    		values: c,
    		done:   d,
    	}
    	r := &_Receiver[Elem]{
    		values: c,
    		done:   d,
    	}
    	runtime.SetFinalizer(r, (*_Receiver[Elem]).finalize)
    	return s, r
    }
    
    // A _Sender is used to send values to a Receiver.
    type _Sender[Elem any] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/Receiver.java

    import java.util.concurrent.BlockingQueue;
    
    /**
     * Receives and handles messages about a given worker action executed by a worker process.
     * <p>
     * This receiver is used per worker action.
     */
    @NonNullApi
    public class Receiver implements ResponseProtocol, StreamCompletion, StreamFailureHandler {
        private static final Object NULL = new Object();
        private static final Object END = new Object();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. test/interface/receiver.go

    Rob Pike <******@****.***> 1329633221 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.3K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-sam-with-receiver.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("kotlin-sam-with-receiver")
    }
    
    samWithReceiver {
        annotation("org.gradle.api.HasImplicitReceiver")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 738 bytes
    - Viewed (0)
  6. test/chan/nonblock.go

    }
    
    func i64sender(c chan int64, strobe chan bool) {
    	c <- 234567
    	strobe <- true
    }
    
    func breceiver(c chan bool, strobe chan bool) {
    	if !<-c {
    		panic("b value")
    	}
    	strobe <- true
    }
    
    func bsender(c chan bool, strobe chan bool) {
    	c <- true
    	strobe <- true
    }
    
    func sreceiver(c chan string, strobe chan bool) {
    	if <-c != "hello" {
    		panic("s value")
    	}
    	strobe <- true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/classpath/JavaCallerForBasicCallInterceptorTest.java

            receiver.test();
        }
    
        public static void doTestSingleArg(InterceptorTestReceiver receiver) {
            receiver.test(receiver);
        }
    
        public static void doTestSingleArgNull(InterceptorTestReceiver receiver) {
            receiver.test(null);
        }
    
        public static void doTestVararg(InterceptorTestReceiver receiver) {
            receiver.testVararg(receiver, receiver, receiver);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:55 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/TrackingDynamicLookupRoutine.kt

        override fun property(receiver: DynamicObject, propertyName: String): Any? =
            withDynamicCall(receiver) {
                receiver.getProperty(propertyName)
            }
    
        override fun findProperty(receiver: DynamicObject, propertyName: String): Any? =
            withDynamicCall(receiver) {
                val dynamicInvokeResult: DynamicInvokeResult = receiver.tryGetProperty(propertyName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. pkg/apis/apps/zz_generated.deepcopy.go

    func (in *ControllerRevision) DeepCopyInto(out *ControllerRevision) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Data != nil {
    		out.Data = in.Data.DeepCopyObject()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ControllerRevision.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 24.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdmissionConfiguration.
    func (in *AdmissionConfiguration) DeepCopy() *AdmissionConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(AdmissionConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top