Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,454 for sreceiver (5.14 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                // FE1.0 represents synthesized properties as an extension property of the Java class. Hence we use the extension receiver as
                // the dispatch receiver and always pass null for extension receiver (because in Java there is no way to specify an extension
                // receiver)
                return KaPartiallyAppliedSymbol(
                    signature,
                    extensionReceiver?.toKtReceiverValue(context, this),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/go/types/interface.go

    // modify their types by setting missing receivers.
    //
    // To avoid race conditions, the interface's type set should be computed before
    // concurrent use of the interface, by explicitly calling Complete.
    func NewInterfaceType(methods []*Func, embeddeds []Type) *Interface {
    	if len(methods) == 0 && len(embeddeds) == 0 {
    		return &emptyInterface
    	}
    
    	// set method receivers if necessary
    	typ := (*Checker)(nil).newInterface()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/1-time.md

    prepared before that call will be sent or received after the call.
    Earlier versions of Go used channels with a one-element buffer,
    making it difficult to use `Reset` and `Stop` correctly.
    A visible effect of this change is that `len` and `cap` of timer channels
    now returns 0 instead of 1, which may affect programs that
    poll the length to decide whether a receive on the timer channel
    will succeed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

                .flatMap { origin -> generateSequence(origin) { (it as? ObjectOrigin.HasReceiver)?.receiver } }
        }
    
        val customAccessorsUsedByReceiver: Map<ObjectOrigin, List<ObjectOrigin.CustomConfigureAccessor>> = run {
            allReceiversResolved.mapNotNull { (it as? ObjectOrigin.CustomConfigureAccessor)?.let { custom -> custom.receiver to custom } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/subst.go

    			iface.complete = t.complete
    			// If we've changed the interface type, we may need to replace its
    			// receiver if the receiver type is the original interface. Receivers of
    			// *Named type are replaced during named type expansion.
    			//
    			// Notably, it's possible to reach here and not create a new *Interface,
    			// even though the receiver type may be parameterized. For example:
    			//
    			//  type T[P any] interface{ m() }
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     * ```
     * fun test(m: MutableList<String>) {
     *   m += "a" // A simple `KaFunctionCall` to `MutableList.plusAssign`, not a `KaVariableAccessCall`. However, the dispatch receiver of this
     *            // call, `m`, is a simple read access represented as a `KaVariableAccessCall`
     * }
     * ```
     */
    public class KaCompoundVariableAccessCall(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

     * while finished notifications are emitted in reverse registration order.
     *
     * Listeners will not receive progress notifications for events before they have received
     * the corresponding start notification or after they have received the corresponding finished notification.
     * Such notifications are just discarded for the listener.
     *
     * @since 3.5
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K 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. src/net/textproto/pipeline.go

    // the request with the given id.
    func (p *Pipeline) StartRequest(id uint) {
    	p.request.Start(id)
    }
    
    // EndRequest notifies p that the request with the given id has been sent
    // (or, if this is a server, received).
    func (p *Pipeline) EndRequest(id uint) {
    	p.request.End(id)
    }
    
    // StartResponse blocks until it is time to receive (or, if this is a server, send)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 16:19:51 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/SynchronizedDispatchConnection.java

            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public T receive() {
            //in case one wants to synchronize this method,
            //bear in mind that it is blocking so it cannot share the same lock as others
            T result = delegate.receive();
            LOGGER.debug("thread {}: received {}", Thread.currentThread().getId(), result == null ? "null" : result.getClass());
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top