Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 215 for Narang (0.4 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/CompilationCache.kt

        action(CompilationCache(this))
    
    
    class CompilationCache(private val result: ExecutionResult) : KotlinDslCacheFixture {
    
        override fun misses(vararg cachedScripts: CachedScript) =
            cachedScripts.forEach { assertCompilations(it, 1) }
    
        override fun hits(vararg cachedScripts: CachedScript) =
            cachedScripts.forEach { assertCompilations(it, 0) }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/UrlComponentEncodingTesterJvm.kt

       * strict than the others.
       */
      fun escapeForUri(vararg codePoints: Int) =
        apply {
          uriEscapedCodePoints.append(String(*codePoints))
        }
    
      /**
       * Configure code points to be stripped in conversion to `java.net.URI`. That class is more
       * strict than the others.
       */
      fun stripForUri(vararg codePoints: Int) =
        apply {
          uriStrippedCodePoints.append(String(*codePoints))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. 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)
  4. src/strconv/makeisprint.go

    	// First, find first i such that rang[i] >= x.
    	// This is the index of either the start or end of a pair that might span x.
    	// The start is even (rang[i&^1]) and the end is odd (rang[i|1]).
    	// If we find x in a range, make sure x is not in exception list.
    
    	if 0 <= r && r < 1<<16 {
    		rr, rang, except := uint16(r), range16, except16
    		i, _ := slices.BinarySearch(rang, rr)
    		if i >= len(rang) || rr < rang[i&^1] || rang[i|1] < rr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

        /**
         * Return a sequence of [KaCallableSymbol] which current scope contain, if declaration name present in [names]
         *
         * @see getCallableSymbols
         */
        public fun getCallableSymbols(vararg names: Name): Sequence<KaCallableSymbol> =
            getCallableSymbols(names.toList())
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/TestWithTempFiles.kt

            tempFolder.testDirectory.createFile(fileName)
    
        protected
        fun newFile(fileName: String, text: String): File =
            newFile(fileName).apply { writeText(text) }
    
        protected
        fun newFolder(vararg folderNames: String): File =
            tempFolder.testDirectory.createDir(folderNames.joinToString(File.separator))
    
        protected
        fun withZip(fileName: String, entries: Sequence<Pair<String, ByteArray>>): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. .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)
  10. 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)
Back to top