- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 215 for getPipe (1.37 sec)
-
src/test/java/org/codelibs/core/io/ResourceUtilTest.java
assertEquals(getRoot() + "Program File", ResourceUtil.getFileName(url)); url = ResourceUtil.getResource("java/lang/String.class"); assertNull(ResourceUtil.getFile(url)); } private String getRoot() throws IOException { final String root = new File("/").getCanonicalPath().replace('\\', '/'); if (root.startsWith("/")) { return root;
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
fragmentOffset = fessConfig.getQueryHighlightFragmentOffsetAsInteger(); } /** * Gets the highlighting type. * * @return the highlighting type */ public String getType() { return type; } /** * Sets the highlighting type with fluent interface. * * @param type the highlighting type to set
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/StorageItem.java
*/ public boolean isDirectory() { return directory; } /** * Returns the size of the item in bytes. * * @return the item size */ public long getSize() { return size; } /** * Returns the last modified timestamp. * * @return the last modified timestamp */ public ZonedDateTime getLastModified() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
public void setPlatform(final String platform) { this.platform = platform; } /** * Gets the live streaming flag. * @return the live value */ public String getLive() { return live; } /** * Sets the live streaming flag. * @param live the live value to set */ public void setLive(final String live) { this.live = live;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
*/ public final long getEndOfFile() { return this.endOfFile; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getSize() */ @Override public final long getSize() { return getEndOfFile(); } /** * Get the file attributes * @return the fileAttributes */ public final int getFileAttributes() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
void testGetEndOfFile() { assertEquals(0, response.getEndOfFile()); } @Test @DisplayName("getSize should return same as getEndOfFile") void testGetSize() { assertEquals(response.getEndOfFile(), response.getSize()); } @Test @DisplayName("getFileAttributes should return initial value of 0") void testGetFileAttributes() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
this.config = config; this.unicode = unicode; } @Override public String getName() { return this.filename; } @Override public int getType() { return SmbConstants.TYPE_FILESYSTEM; } /** * @return the fileIndex */ @Override public int getFileIndex() { return this.fileIndex; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbShareInfo.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java
assertArgumentNotNull("field", field); this.beanDesc = beanDesc; this.field = field; fieldName = field.getName(); fieldType = field.getType(); parameterizedClassDesc = ParameterizedClassDescFactory.createParameterizedClassDesc(field, beanDesc.getTypeVariables()); } @Override public BeanDesc getBeanDesc() { return beanDesc;
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} @Override public Locale getLocale() { return Locale.ROOT; } @Override public SearchRequestType getType() { return SearchRequestType.JSON; } @Override public String getSimilarDocHash() { return request.getParameter("sdh"); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 55.4K bytes - Viewed (1)