- Sort Score
- Result 10 results
- Languages All
Results 2061 - 2070 of 7,081 for returns (0.07 sec)
-
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
} public String getType() { return type; } public HighlightInfo type(final String type) { this.type = type; return this; } public int getFragmentSize() { return fragmentSize; } public HighlightInfo fragmentSize(final int fragmentSize) { this.fragmentSize = fragmentSize; return this; } public int getNumOfFragments() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java
@Override public String getUrl() { return url; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.UrlQueue#setUrl(java.lang.String) */ @Override public void setUrl(final String url) { this.url = url; } @Override public String getMetaData() { return metaData; } @Override
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Mon Nov 04 07:44:18 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponse.java
} /** * @return the available */ public final int getAvailable () { return this.available; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override protected int writeParametersWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
} protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } public int getAllRecordCount() { return allRecordCount; } public void setAllRecordCount(final int allRecordCount) { this.allRecordCount = allRecordCount; } public int getAllPageCount() { return allPageCount; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
id = null; } protected int getDefaultPageSize() { return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } protected int getDefaultCurrentPageNumber() { return 1; } public int getAllRecordCount() { return allRecordCount; } public void setAllRecordCount(final int allRecordCount) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
public HtmlNext getVirtualHostPath(final HtmlNext page) { return processVirtualHost(s -> { final String basePath = getVirtualHostBasePath(s, page); return new HtmlNext(basePath + page.getRoutingPath()); }, page); } protected String getVirtualHostBasePath(final String s, final HtmlNext page) { return StringUtil.isBlank(s) ? StringUtil.EMPTY : "/" + s; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy
newInterfaces.keySet().removeAll(oldInterfaces.keySet()) if (newInterfaces.isEmpty()) { return null } List<String> changes = filterChangesToReport(newClass, newInterfaces) if (changes.isEmpty()) { return null } return acceptOrReject(c, changes, Violation.error(c, " introduces internal or incubating interfaces")) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 06 19:15:15 UTC 2022 - 2.8K bytes - Viewed (0) -
callbacks/helper.go
values.Values[i][idx] = v } } return } func hasReturning(tx *gorm.DB, supportReturning bool) (bool, gorm.ScanMode) { if supportReturning { if c, ok := tx.Statement.Clauses["RETURNING"]; ok { returning, _ := c.Expression.(clause.Returning) if len(returning.Columns) == 0 || (len(returning.Columns) == 1 && returning.Columns[0].Name == "*") { return true, 0 } return true, gorm.ScanUpdate } }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Apr 14 12:32:57 UTC 2022 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsBadWord.java
// ======= @Override public BadWordDbm asDBMeta() { return BadWordDbm.getInstance(); } @Override public String asTableDbName() { return "bad_word"; } // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java
// ======= @Override public FailureUrlDbm asDBMeta() { return FailureUrlDbm.getInstance(); } @Override public String asTableDbName() { return "failure_url"; } // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.6K bytes - Viewed (0)