Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for Narang (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

            }
        }
    
        @Test
        fun `maps Groovy named arguments to Kotlin vararg of Pair`() {
    
            apiKotlinExtensionsGenerationFor(GroovyNamedArguments::class, Consumer::class) {
    
                assertGeneratedExtensions(
                    """
                    inline fun org.gradle.kotlin.dsl.fixtures.codegen.GroovyNamedArguments.`rawMap`(vararg `args`: Pair<String, Any?>): Unit =
                        `rawMap`(mapOf(*`args`))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            fun assertHasInformation(vararg information: String) {
                assertThat("Has information", richReport.information.map { it.message }, CoreMatchers.equalTo(information.toList()))
            }
    
            fun assertHasAccepted(vararg accepted: String) {
                assertThat("Has accepted", richReport.accepted.map { it.message }, CoreMatchers.equalTo(accepted.toList()))
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

            File(projectRoot, relativePath).canonicalFile
    
        fun build(vararg arguments: String): ExecutionResult =
            gradleExecuterFor(arguments).run()
    
        protected
        fun buildFailureOutput(vararg arguments: String): String =
            buildAndFail(*arguments).error
    
        protected
        fun buildAndFail(vararg arguments: String): ExecutionFailure =
            gradleExecuterFor(arguments).runWithFailure()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/sys_openbsd_arm64.s

    noerr:
    	RET
    
    TEXT runtime·fcntl_trampoline(SB),NOSPLIT,$0
    	MOVD	R0, R19
    	MOVW	0(R19), R0		// arg 1 - fd
    	MOVW	4(R19), R1		// arg 2 - cmd
    	MOVW	8(R19), R2		// arg 3 - arg
    	MOVD	$0, R3			// vararg
    	CALL	libc_fcntl(SB)
    	MOVD	$0, R1
    	CMP	$-1, R0
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R0), R1
    	MOVW	$-1, R0
    noerr:
    	MOVW	R0, 12(R19)
    	MOVW	R1, 16(R19)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_amd64.s

    	RET
    
    TEXT runtime·open_trampoline(SB),NOSPLIT,$0
    	MOVL	8(DI), SI		// arg 2 - flags
    	MOVL	12(DI), DX		// arg 3 - mode
    	MOVQ	0(DI), DI		// arg 1 - path
    	XORL	AX, AX			// vararg: say "no float args"
    	CALL	libc_open(SB)
    	RET
    
    TEXT runtime·close_trampoline(SB),NOSPLIT,$0
    	MOVL	0(DI), DI		// arg 1 - fd
    	CALL	libc_close(SB)
    	RET
    
    TEXT runtime·read_trampoline(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. src/runtime/sys_darwin_amd64.s

    	CALL	libc_exit(SB)
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    TEXT runtime·open_trampoline(SB),NOSPLIT,$0
    	MOVL	8(DI), SI		// arg 2 flags
    	MOVL	12(DI), DX		// arg 3 mode
    	MOVQ	0(DI), DI		// arg 1 pathname
    	XORL	AX, AX			// vararg: say "no float args"
    	CALL	libc_open(SB)
    	RET
    
    TEXT runtime·close_trampoline(SB),NOSPLIT,$0
    	MOVL	0(DI), DI		// arg 1 fd
    	CALL	libc_close(SB)
    	RET
    
    TEXT runtime·read_trampoline(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            )
        }
    
        private
        fun run(vararg args: String) = GradleRunner.create()
            .withProjectDir(projectDir)
            .withTestKitDir(projectDir.resolve("test-kit"))
            .withPluginClasspath()
            .forwardOutput()
            .withArguments(*args)
    
        private
        fun assertArchivedFilesSeen(vararg archiveFileNames: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin_arm64.s

    	// If fn is declared as vararg, we have to pass the vararg arguments on the stack.
    	// (Because ios decided not to adhere to the standard arm64 calling convention, sigh...)
    	// The only libSystem calls we support that are vararg are open, fcntl, and ioctl,
    	// which are all of the form fn(x, y, ...). So we just need to put the 3rd arg
    	// on the stack as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

            this.cipherSuites = null
          }
    
        fun cipherSuites(vararg cipherSuites: CipherSuite): Builder =
          apply {
            require(tls) { "no cipher suites for cleartext connections" }
            val strings = cipherSuites.map { it.javaName }.toTypedArray()
            return cipherSuites(*strings)
          }
    
        fun cipherSuites(vararg cipherSuites: String) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

     * See [Configuration.extendsFrom].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().extendsFrom(superConfigs)"), level = DeprecationLevel.HIDDEN)
    fun <T : Configuration> NamedDomainObjectProvider<T>.extendsFrom(vararg superConfigs: Configuration) =
        get().extendsFrom(*superConfigs)
    
    
    /**
     * See [Configuration.isTransitive].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top