- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for getBlob (1.36 sec)
-
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
assertTrue(decoded > 0, "Decode should return positive length"); assertEquals(NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED, resp.getStatus()); assertArrayEquals(blob, resp.getBlob(), "Security blob should match"); assertEquals(sessionFlags, resp.getSessionFlags(), "Session flags should decode"); assertTrue(resp.isLoggedInAsGuest(), "Guest/anonymous should be detected");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java
@Override public InputStream getInputStream() throws IOException { if (!connected) { connect(); } try { final Blob blobObj = getBlob(); if (blobObj == null) { throw new IOException("Object not found: bucket=" + bucketName + ", object=" + objectName); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
return this.isLoggedInAsGuest; } /** * Returns the security blob received from the server during extended security negotiation. * * @return the blob */ public final byte[] getBlob() { return this.blob; } @Override protected int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
return this.sessionFlags; } /** * Gets the security blob from the session setup response * * @return security blob */ public byte[] getBlob() { return this.blob; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
final String path = paths[1]; if (logger.isDebugEnabled()) { logger.debug("Parsed GCS path: bucket={}, objectPath={}", bucketName, path); } final Blob blob = getBlob(bucketName, path); if (blob == null) { final Set<RequestData> requestDataSet = new HashSet<>();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
this.preauthIntegrityHash = trans.calculatePreauthHash(respBytes, 0, respBytes.length, this.preauthIntegrityHash); } } token = response.getBlob(); } if (ctx.isEstablished()) { log.debug("Context is established"); setNetbiosName(ctx.getNetbiosName()); byte[] sk = ctx.getSigningKey();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
assertEquals(4, sitemaps.length); assertEquals("http://www.example.com/page1.html", sitemaps[0].getLoc()); assertEquals("http://www.example.com/page2.html", sitemaps[1].getLoc()); assertEquals("http://www.example.com/page3.html", sitemaps[2].getLoc()); assertEquals("https://www.example.com/page4.html", sitemaps[3].getLoc()); } public void test_parseXmlSitemapsIndex_missingLoc() {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 36.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
*/ public SitemapFile() { // Default constructor } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.Sitemap#getLoc() */ @Override public String getLoc() { return loc; } /** * Sets the location of the sitemap. * @param loc the location URL to set */ public void setLoc(final String loc) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.4K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessor.java
for (final Sitemap sitemap : sitemapSet.getSitemaps()) { if (sitemap != null) { requestDataSet.add(RequestDataBuilder.newRequestData().get().url(sitemap.getLoc()).build()); // TODO priority } } throw new ChildUrlsException(requestDataSet, this.getClass().getName() + "#process"); } catch (final IOException e) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java
*/ public SitemapImage() { // Default constructor } /** * Gets the location URL of the image. * @return the image URL */ public String getLoc() { return loc; } /** * Sets the location URL of the image. * @param loc the image URL to set */ public void setLoc(final String loc) { this.loc = loc; }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 3.8K bytes - Viewed (0)