Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,517 for receivers (0.24 sec)

  1. src/go/types/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
    - 24K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-58476`](https://youtrack.jetbrains.com/issue/KT-58476) Context receivers: "No mapping for symbol: VALUE_PARAMETER" with context-receiver inside suspended lambda calling another suspended function
    - [`KT-52213`](https://youtrack.jetbrains.com/issue/KT-52213) Context receivers: "No mapping for symbol: VALUE_PARAMETER"  caused by contextual suspending function type with receiver
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/Receiver.java

    import javax.annotation.Nullable;
    import java.util.concurrent.ArrayBlockingQueue;
    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();
    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. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                .flatMap {
                    // We must use `it.getAvailableScopes()` instead of `it.scope` to check scopes of companion objects
                    // and context receivers as well.
                    it.getAvailableScopes()
                }
    
            val result = buildList {
                addAll(nonLocalScopes)
                addIfNotNull(createFakeImportingScope(newImports))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. src/flag/flag.go

    	var flagvar int
    	func init() {
    		flag.IntVar(&flagvar, "flagname", 1234, "help message for flagname")
    	}
    
    Or you can create custom flags that satisfy the Value interface (with
    pointer receivers) and couple them to flag parsing by
    
    	flag.Var(&flagVal, "name", "help message for flagname")
    
    For such flags, the default value is just the initial value of the variable.
    
    After all flags are defined, call
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ----
    plugins {
        `kotlin-dsl`
    }
    
    tasks.withType(KotlinCompile::class).configureEach {
        kotlinOptions { // Deprecated non-lazy configuration options
            freeCompilerArgs = listOf("-Xcontext-receivers")
        }
    }
    ----
    =====
    ====
    
    With the configuration above you would get the following build failure:
    
    [source,text]
    ----
    * What went wrong
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    			x.X = Unparen(p.unaryExpr())
    			return x
    		}
    
    	case _Arrow:
    		// receive op (<-x) or receive-only channel (<-chan E)
    		pos := p.pos()
    		p.next()
    
    		// If the next token is _Chan we still don't know if it is
    		// a channel (<-chan int) or a receive op (<-chan int(ch)).
    		// We only know once we have found the end of the unaryExpr.
    
    		x := p.unaryExpr()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		return false
    	}
    	name = name[n:]
    	rcvr := ""
    
    	// Extract receiver type, if any.
    	// For example, runtime.(*Func).Entry
    	i := len(name) - 1
    	for i >= 0 && name[i] != '.' {
    		i--
    	}
    	if i >= 0 {
    		rcvr = name[:i]
    		name = name[i+1:]
    		// Remove parentheses and star for pointer receivers.
    		if len(rcvr) >= 3 && rcvr[0] == '(' && rcvr[1] == '*' && rcvr[len(rcvr)-1] == ')' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/Receive.java

     * A source for messages. Implementations do not have to be thread-safe.
     */
    public interface Receive<T> {
        /**
         * Blocks until the next message is available. Returns null when the end of the message stream has been reached.
         *
         * @return The next message, or null when the end of the stream has been reached.
         */
        @Nullable
        T receive();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. 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)
Back to top