Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for jnifix (0.78 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/webapp/css/admin/adminlte.min.css.map

    {\n        .m#{$infix}-n#{$size} { margin: -$length !important; }\n        .mt#{$infix}-n#{$size},\n        .my#{$infix}-n#{$size} {\n          margin-top: -$length !important;\n        }\n        .mr#{$infix}-n#{$size},\n        .mx#{$infix}-n#{$size} {\n          margin-right: -$length !important;\n        }\n        .mb#{$infix}-n#{$size},\n        .my#{$infix}-n#{$size} {\n          margin-bottom: -$length !important;\n        }\n        .ml#{$infix}-n#{$size},\n        .mx#{$infix}-n#{$size} {\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 2M bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-tika-unix-dump",
    				"application/java-serialized-object",
    				"application/javascript",
    				"application/json",
    				"application/java-vm",
    				"application/x-java-jnilib",
    				"application/kpml-request+xml",
    				"application/kpml-response+xml",
    				"application/lost+xml",
    				"application/mac-binhex40",
    				"application/mac-compactpro",
    				"application/macwriteii",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-65810`](https://youtrack.jetbrains.com/issue/KT-65810) PowerAssert: Infix transformation doesn't capture full context
    - [`KT-65640`](https://youtrack.jetbrains.com/issue/KT-65640) PowerAssert: Infix function not aligned correctly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <magic priority="40">
          <match value="0xcafebabe" type="string" offset="0" />
        </magic>
        <glob pattern="*.class"/>
      </mime-type>
    
      <mime-type type="application/x-java-jnilib">
        <_comment>Java Native Library for OSX</_comment>
        <magic priority="50">
          <match value="0xcafebabe" type="string" offset="0">
            <match value="0xfeedface" type="string" offset="4096"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top