Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for jnifix (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

        in '0'..'9' -> this - '0'
        in 'a'..'f' -> this - 'a' + 10
        in 'A'..'F' -> this - 'A' + 10
        else -> -1
      }
    
    internal infix fun Byte.and(mask: Int): Int = toInt() and mask
    
    internal infix fun Short.and(mask: Int): Int = toInt() and mask
    
    internal infix fun Int.and(mask: Long): Long = toLong() and mask
    
    @Throws(IOException::class)
    internal fun BufferedSink.writeMedium(medium: Int) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        )
                    ]
                )""".trimIndent()
            results.assert(expected)
        }
    
        @Test
        fun `parses infix call chain`() {
            val results = parse(
                """
                f(1) g "string" h true i 2L j 3.apply(4)
                """.trimIndent()
            )
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. src/image/jpeg/reader_test.go

    		"FAIL:\xff\x03",
    		"FAIL:\xff\xd5",
    		"FAIL:\xff\xff\xd5",
    	}
    
    	for _, tc := range testCases {
    		want := tc[:5] == "PASS:"
    		infix := tc[5:]
    
    		data := []byte(nil)
    		data = append(data, prefix...)
    		data = append(data, infix...)
    		data = append(data, suffix...)
    		_, err := Decode(bytes.NewReader(data))
    		got := err == nil
    
    		if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. src/html/template/js_test.go

    		// prefix and binary operators.
    		{jsCtxRegexp, "="},
    		{jsCtxRegexp, "+="},
    		{jsCtxRegexp, "*="},
    		{jsCtxRegexp, "*"},
    		{jsCtxRegexp, "!"},
    		// Whether the + or - is infix or prefix, it cannot precede a
    		// div op.
    		{jsCtxRegexp, "+"},
    		{jsCtxRegexp, "-"},
    		// An incr/decr op precedes a div operator.
    		// This is not airtight. In (g = ++/h/i) a regexp follows a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            val firCall = infixCallExpression.getOrBuildFirSafe<FirFunctionCall>(firResolveSession) ?: return null
    
            // There is only one parameter for infix functions; get its type
            val argumentsToParameters = firCall.argumentsToSubstitutedValueParameters(substituteWithErrorTypes = false) ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. src/html/template/js.go

    	}
    
    	// All cases below are in the single-byte UTF-8 group.
    	switch c, n := s[len(s)-1], len(s); c {
    	case '+', '-':
    		// ++ and -- are not regexp preceders, but + and - are whether
    		// they are used as infix or prefix operators.
    		start := n - 1
    		// Count the number of adjacent dashes or pluses.
    		for start > 0 && s[start-1] == c {
    			start--
    		}
    		if (n-start)&1 == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top