Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 244 (0.04 sec)

  1. src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java

                buf.writeOctetArray(wideBytes, 0, wideBytes.length);
                buf.enc_ndr_short(0); // Wide null terminator
    
                // Pad to 4-byte boundary
                int padding = (4 - ((wideBytes.length + 2) % 4)) % 4;
                for (int i = 0; i < padding; i++) {
                    buf.enc_ndr_small(0);
                }
            }
        }
    
        /**
         * Decodes a wide string pointer from NDR format.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  2. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidFileHeaderInfo-239]
    	_ = x[ErrInvalidJSONType-240]
    	_ = x[ErrInvalidQuoteFields-241]
    	_ = x[ErrInvalidRequestParameter-242]
    	_ = x[ErrInvalidDataType-243]
    	_ = x[ErrInvalidTextEncoding-244]
    	_ = x[ErrInvalidDataSource-245]
    	_ = x[ErrInvalidTableAlias-246]
    	_ = x[ErrMissingRequiredParameter-247]
    	_ = x[ErrObjectSerializationConflict-248]
    	_ = x[ErrUnsupportedSQLOperation-249]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            buf.readOctetArray(wideBytes, 0, byteCount);
    
            // Skip null terminator
            buf.dec_ndr_short();
    
            // Skip padding
            int padding = (4 - ((byteCount + 2) % 4)) % 4;
            for (int i = 0; i < padding; i++) {
                buf.dec_ndr_small();
            }
    
            return new String(wideBytes, StandardCharsets.UTF_16LE);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  4. .teamcity/performance-test-durations.json

        "linux" : 550
      }, {
        "testProject" : "largeMonolithicJavaProject",
        "linux" : 1197
      }, {
        "testProject" : "mediumJavaMultiProjectWithTestNG",
        "linux" : 244
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIncrementalExecutionPerformanceTest.up-to-date assemble (parallel false)",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Sep 08 06:58:31 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

             <match value="0x014c" type="little16" offset="132"/>
          </match>
          <match value="PE\000\000" type="string" offset="240">
             <match value="0x014c" type="little16" offset="244"/>
          </match>
        </magic>
      </mime-type>
      <mime-type type="application/x-msdownload;format=pe64">
        <sub-class-of type="application/x-msdownload;format=pe"/>
        <magic priority="60">
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Mar 13 08:18:01 UTC 2025
    - 320.1K bytes
    - Viewed (1)
  6. lib/fips140/v1.0.0.zip

    quotient += dividend >> (d - 1) & 1 // quotient is at most (2¹¹-1) * q / 2¹¹ + 1 = 3328, so it didn't overflow. return fieldElement(quotient) } // ringElement is a polynomial, an element of R_q, represented as an array // according to FIPS 203, Section 2.4.4. type ringElement [n]fieldElement // polyAdd adds two ringElements or nttElements. func polyAdd[T ~[n]fieldElement](a, b T) (s T) { for i := range s { s[i] = fieldAdd(a[i], b[i]) } return s } // polySub subtracts two ringElements or nttElements. func...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  7. RELEASE.md

        [CVE-2021-22898](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22898),
        and
        [CVE-2021-22901](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22901).
    
    # Release 2.4.4
    
    This release introduces several vulnerability fixes:
    
    *   Fixes a code injection issue in `saved_model_cli`
        ([CVE-2021-41228](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41228))
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (2)
Back to top