Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,454 for sreceiver (3.28 sec)

  1. pkg/apis/batch/zz_generated.deepcopy.go

    func (in *CronJob) DeepCopyInto(out *CronJob) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CronJob.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. test/typeparam/orderedmapsimp.dir/a.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: Wed Jul 28 21:40:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. src/internal/fuzz/sys_posix.go

    // error in the program that received it, triggered by a fuzz input. For
    // example, SIGSEGV would be received after a nil pointer dereference.
    // Other signals like SIGKILL or SIGHUP are more likely to have been sent by
    // another process, and we shouldn't record a crasher if the worker process
    // receives one of these.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/FileInterceptorsDeclaration.java

        @InterceptCalls
        @InstanceMethod
        public static File[] intercept_listFiles(
            @Receiver File thisFile,
            @CallerClassName String consumer
        ) {
            return Instrumented.fileListFiles(thisFile, consumer);
        }
    
        @InterceptCalls
        @InstanceMethod
        public static File[] intercept_listFiles(
            @Receiver File thisFile,
            FileFilter fileFilter,
            @CallerClassName String consumer
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/testing/zz_generated.deepcopy.go

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Simple.
    func (in *Simple) DeepCopy() *Simple {
    	if in == nil {
    		return nil
    	}
    	out := new(Simple)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Simple) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 5K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            when:
            def received = receiver.deserialize(originator.serialize(original))
            def reply = originator.deserialize(receiver.serialize(received))
    
            then:
            received.class != original.class
            !payloadClass.isInstance(received)
            Proxy.getInvocationHandler(received).class != GroovyInvocationHandler.class
            received.value == "result!"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/named.go

    }
    
    // Method returns the i'th method of named type t for 0 <= i < t.NumMethods().
    //
    // For an ordinary or instantiated type t, the receiver base type of this
    // method is the named type t. For an uninstantiated generic type t, each
    // method receiver is instantiated with its receiver type parameters.
    //
    // Methods are numbered deterministically: given the same list of source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/watch/streamwatcher.go

    		result: make(chan Event),
    		// If the watcher is externally stopped there is no receiver anymore
    		// and the send operations on the result channel, especially the
    		// error reporting might block forever.
    		// Therefore a dedicated stop channel is used to resolve this blocking.
    		done: make(chan struct{}),
    	}
    	go sw.receive()
    	return sw
    }
    
    // ResultChan implements Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 13:42:59 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. subprojects/build-events/src/main/java/org/gradle/build/event/BuildEventsListenerRegistry.java

     *
     * @since 6.1
     */
    public interface BuildEventsListenerRegistry {
        /**
         * Subscribes the given listener to the finish events for tasks, if not already subscribed. The listener receives a {@link org.gradle.tooling.events.task.TaskFinishEvent} as each task completes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 30 09:10:51 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. pkg/apis/apiserverinternal/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerStorageVersion.
    func (in *ServerStorageVersion) DeepCopy() *ServerStorageVersion {
    	if in == nil {
    		return nil
    	}
    	out := new(ServerStorageVersion)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top