Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 513 for isOnline (0.29 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/smartCastExtensionReceiver.capturing.txt

    ExtensionReceiver[name: dumbWith; isMutated: false; displayText: this@dumbWith]
        dumbWith@fun R|kotlin/Any?|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=UNKNOWN>
        R|kotlin/Any?|
    ExtensionReceiver[name: dumbWith; isMutated: false; displayText: this@dumbWith]
        dumbWith@fun R|kotlin/Any?|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=UNKNOWN>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Sep 04 15:47:56 UTC 2023
    - 382 bytes
    - Viewed (0)
  2. test/fixedbugs/issue23521.go

    const truth = true
    
    func f() int { // ERROR "can inline f"
    	if truth {
    		return 0
    	}
    	// If everything below is removed, as it should,
    	// function f should be inlineable.
    	nonleaf()
    	for {
    		panic("")
    	}
    }
    
    func g() int { // ERROR "can inline g"
    	return f() // ERROR "inlining call to f"
    }
    
    func f2() int { // ERROR "can inline f2"
    	if !truth {
    		nonleaf()
    	} else {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 03 15:19:41 UTC 2018
    - 773 bytes
    - Viewed (0)
  3. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/TaskInternalExtensions.kt

    import org.gradle.internal.service.ServiceRegistry
    
    
    internal
    inline fun <reified T : Any> TaskInternal.serviceOf(): T =
        project.serviceOf()
    
    
    inline fun <reified T : Any> Project.serviceOf(): T =
        (this as ProjectInternal).services.get()
    
    
    inline fun <reified T : Any> GradleInternal.serviceOf(): T =
        services.get()
    
    
    inline fun <reified T : Any> ServiceRegistry.get(): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue56280.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    func F() { // ERROR "can inline F"
    	g(0) // ERROR "inlining call to g\[go.shape.int\]"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 21:26:09 UTC 2022
    - 382 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionContainerExtensions.kt

     * @see [ExtensionContainer.getByType]
     * @since 5.0
     */
    inline fun <reified T : Any> ExtensionContainer.getByType(): T =
        getByType(typeOf<T>())
    
    
    /**
     * Looks for the extension of a given type.
     *
     * @param T the extension type
     * @return the extension or null if not found
     *
     * @see [ExtensionContainer.findByType]
     * @since 5.0
     */
    inline fun <reified T : Any> ExtensionContainer.findByType(): T? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/Locks.kt

     */
    internal object Locks {
      inline fun <T> Dispatcher.withLock(action: () -> T): T {
        contract { callsInPlace(action, InvocationKind.EXACTLY_ONCE) }
        return lock.withLock(action)
      }
    
      inline fun <T> RealConnection.withLock(action: () -> T): T {
        contract { callsInPlace(action, InvocationKind.EXACTLY_ONCE) }
        return lock.withLock(action)
      }
    
      inline fun <T> RealCall.withLock(action: () -> T): T {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. test/inline_sync.go

    func small5() { // ERROR "can inline small5"
    	// the Unlock fast path should be inlined
    	mutex.Unlock() // ERROR "inlining call to sync\.\(\*Mutex\)\.Unlock"
    }
    
    func small6() { // ERROR "can inline small6"
    	// the Lock fast path should be inlined
    	mutex.Lock() // ERROR "inlining call to sync\.\(\*Mutex\)\.Lock"
    }
    
    var once *sync.Once
    
    func small7() { // ERROR "can inline small7"
    	// the Do fast path should be inlined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 21:01:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtPropertyAccessorSymbol.kt

        final override val contextReceivers: List<KaContextReceiver> get() = withValidityAssertion { emptyList() }
    
        public abstract val isDefault: Boolean
        public abstract val isInline: Boolean
        public abstract val isOverride: Boolean
        public abstract val hasBody: Boolean
    
        final override val symbolKind: KaSymbolKind get() = withValidityAssertion { KaSymbolKind.ACCESSOR }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/c/conversion_macros.h

      inline cpp_impl *unwrap(wrapper *w) {                                        \
        return reinterpret_cast<cpp_impl *>(w);                                    \
      }                                                                            \
                                                                                   \
      inline const cpp_impl *unwrap(const wrapper *w) {                            \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 04 16:24:03 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/testing/types.go

    type Simple struct {
    	metav1.TypeMeta   `json:",inline"`
    	metav1.ObjectMeta `json:"metadata"`
    	// +optional
    	Other string `json:"other,omitempty"`
    	// +optional
    	Labels map[string]string `json:"labels,omitempty"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    type SimpleRoot struct {
    	metav1.TypeMeta   `json:",inline"`
    	metav1.ObjectMeta `json:"metadata"`
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.3K bytes
    - Viewed (0)
Back to top