Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 487 for Implicits (0.23 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

        }
    
        def "closes implicit <p> element at start of block element"() {
            expect:
            parse(source) == transformed
    
            where:
            source              | transformed
            "text<p>para 2</p>" | "<p>text</p><p>para 2</p>"
            "text<h2>text</h2>" | "<p>text</p><h2>text</h2>"
        }
    
        def "does not add implicit <p> element for elements with inline content"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceResolveMixIn.kt

        }
    
        /**
         * Checks if the reference is an implicit reference to a companion object via the containing class.
         *
         * Example:
         * ```
         * class A {
         *    companion object {
         *       fun foo() {}
         *    }
         * }
         * ```
         *
         * For the case provided, inside the call `A.foo()`,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 08:30:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaReceiverValue.kt

        override val type: KaType by validityAsserted(type)
    }
    
    /**
     * An implicit receiver. For example
     * ```
     * class A {
     *   val i: Int = 1
     *   fun test() {
     *     i // implicit receiver bound to class `A`
     *   }
     * }
     *
     * fun String.test() {
     *   length // implicit receiver bound to the `KaReceiverParameterSymbol` of type `String` declared by `test`.
     * }
     * ```
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testshared/testdata/explicit/explicit.go

    package explicit
    
    import (
    	"testshared/implicit"
    )
    
    func E() int {
    	return implicit.I()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 91 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/testdata/implicitcmd/implicitcmd.go

    package main
    
    import (
    	"testshared/explicit"
    	"testshared/implicit"
    )
    
    func main() {
    	println(implicit.I() + explicit.E())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 126 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/ImplicitImportsTest.kt

    import org.hamcrest.CoreMatchers.containsString
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class ImplicitImportsTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `implicit imports are fully qualified to allow use of the preferred type amongst those with same simple name in different Gradle API packages`() {
    
            // given:
            withBuildScript(
                """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_promote_implicit.txt

    # We can promote the implicit requirement by getting the importing package.
    # NOTE: the hint recommends getting the imported package (tested below) since
    # it's more obvious and doesn't require -d. However, that adds an '// indirect'
    # comment on the requirement.
    go get m/use-indirect
    cmp go.mod go.mod.use
    cp go.mod.orig go.mod
    
    # We can also promote implicit requirements using 'go get' on them, or their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. test/fixedbugs/bug184.go

    func (*Buffer) Read() {}
    
    type Reader interface {
    	Read()
    }
    
    func f() *Buffer { return nil }
    
    func g() Reader {
    	// implicit interface conversion in assignment during return
    	return f()
    }
    
    func h() (b *Buffer, ok bool) { return }
    
    func i() (r Reader, ok bool) {
    	// implicit interface conversion in multi-assignment during return
    	return h()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 849 bytes
    - Viewed (0)
  9. src/runtime/memmove_arm.s

    _f4loop:
    	CMP	TMP, TS
    	BHS	_f1tail
    
    	MOVW.P	4(FROM), TMP1	/* implicit write back */
    	MOVW.P	TMP1, 4(TS)	/* implicit write back */
    	B	_f4loop
    
    _f1tail:
    	CMP	TS, TE
    	BEQ	_return
    
    	MOVBU.P	1(FROM), TMP	/* implicit write back */
    	MOVBU.P	TMP, 1(TS)	/* implicit write back */
    	B	_f1tail
    
    _return:
    	MOVW	to+0(FP), R0
    	RET
    
    _bunaligned:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

        /**
         * <p>Adds an artifact to this dependency.</p>
         *
         * <p>If no artifact is added to a dependency, an implicit default artifact is used. This default artifact has the
         * same name as the module and its type and extension is {@code jar}. If at least one artifact is explicitly added,
         * the implicit default artifact won't be used any longer.</p>
         *
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top