Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 250 for maxarg (0.09 sec)

  1. 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)
  2. pkg/kubelet/images/image_gc_manager.go

    	if im.policy.MaxAge == 0 {
    		return images, nil
    	}
    
    	// Wait until the MaxAge has passed since the Kubelet has started,
    	// or else we risk prematurely garbage collecting images.
    	if freeTime.Sub(beganGC) <= im.policy.MaxAge {
    		return images, nil
    	}
    	var deletionErrors []error
    	remainingImages := make([]evictionInfo, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. 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)
  4. .teamcity/src/main/kotlin/configurations/VcsTriggers.kt

            -:.teamcity
            -:platforms/documentation/docs/src/docs/release
    """.trimIndent()
    
    fun VersionedSettingsBranch.branchFilter() = """
        +:$branchName
    """.trimIndent()
    
    fun branchesFilterExcluding(vararg excludedBranch: String) = """
    +:*
    ${excludedBranch.joinToString("\n") { "-:$it" }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilCommon.kt

     * limitations under the License.
     */
    package okhttp3
    
    import okio.Buffer
    import okio.Path
    import okio.Path.Companion.toPath
    
    val okHttpRoot: Path
      get() = getEnv("OKHTTP_ROOT")!!.toPath()
    
    fun String(vararg codePoints: Int): String {
      val buffer = Buffer()
      for (codePoint in codePoints) {
        buffer.writeUtf8CodePoint(codePoint)
      }
      return buffer.readUtf8()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 931 bytes
    - Viewed (0)
  8. 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)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.ir.txt

                      <T>: kotlin.Int
                      $receiver: CALL 'public final fun listOf <T> (vararg elements: T of kotlin.collections.listOf): kotlin.collections.List<T of kotlin.collections.listOf> declared in kotlin.collections' type=kotlin.collections.List<kotlin.Int> origin=null
                        <T>: kotlin.Int
                        elements: VARARG type=kotlin.Array<out kotlin.Int> varargElementType=kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/CopySpecExtensions.kt

    import org.gradle.api.file.CopySpec
    
    import java.io.FilterReader
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    inline fun <reified T : FilterReader> CopySpec.filter(vararg properties: Pair<String, Any?>) =
        filter(mapOf(*properties), T::class.java)
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top