- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for getFreq (0.06 seconds)
-
src/main/java/jcifs/smb/SmbTreeConnection.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 30.4K bytes - Click Count (1) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
@Override public long getInitialSize() { return this.initialSize; } /** * {@inheritDoc} * * @see jcifs.SmbFileHandle#getTree() */ @Override public SmbTreeHandleImpl getTree() { return this.tree.acquire(); } /** * {@inheritDoc} * * @see jcifs.SmbFileHandle#isValid() */ @OverrideCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 9.4K bytes - Click Count (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapAlternateLink.java
*/ public void setHreflang(final String hreflang) { this.hreflang = hreflang; } /** * Gets the href URL. * @return the href URL */ public String getHref() { return href; } /** * Sets the href URL. * @param href the href URL to set */ public void setHref(final String href) { this.href = href; }Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 13 13:34:36 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
@Override public int sendrecv(final byte[] buf, final int off, final int length, final byte[] inB, final int maxRecvSize) throws IOException { try (SmbFileHandleImpl fh = ensureOpen(); SmbTreeHandleImpl th = fh.getTree()) { if (th.isSMB2()) { final Smb2IoctlRequest req = new Smb2IoctlRequest(th.getConfig(), Smb2IoctlRequest.FSCTL_PIPE_TRANSCEIVE, fh.getFileId(), inB);Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 10.2K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
assertEquals("en", link1.getHreflang()); assertEquals("http://www.example.com/en/page.html", link1.getHref()); final SitemapAlternateLink link2 = sitemapUrl.getAlternateLinks().get(1); assertEquals("ja", link2.getHreflang()); assertEquals("http://www.example.com/ja/page.html", link2.getHref()); final SitemapAlternateLink link3 = sitemapUrl.getAlternateLinks().get(2);
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 36.7K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
if (this.tmp == null) { throw new IOException("Bad file descriptor"); } // ensure file is open try (SmbFileHandleImpl fd = ensureOpen(); SmbTreeHandleImpl th = fd.getTree()) { if (log.isTraceEnabled()) { log.trace("read: fid=" + fd + ",off=" + off + ",len=" + len); } final int type = this.file.getType(); int r, n;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 15.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
this.size = allocInfo.getCapacity(); this.sizeExpiration = System.currentTimeMillis() + getContext().getConfig().getAttributeCacheTimeout(); return allocInfo.getFree(); } return 0L; } catch (final CIFSException e) { throw SmbException.wrap(e); } } /** * @return
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
if (type == TYPE_SHARE) { size = response.info.getCapacity(); sizeExpiration = System.currentTimeMillis() + attrExpirationPeriod; } return response.info.getFree(); } /** * Creates a directory with the path specified by this * <code>SmbFile</code>. For this method to be successful, the target * must not already exist. This method will fail whenCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (0)