- Sort Score
- Result 10 results
- Languages All
Results 2871 - 2880 of 5,353 for Return (0.15 sec)
-
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
return accessTokenList; } /** * Get the access token. * @param id The ID of the access token. * @return The access token. */ public OptionalEntity<AccessToken> getAccessToken(final String id) { return accessTokenBhv.selectByPK(id); } /** * Store the access token.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XPathAPI.java
* @return a configured instance of {@link XPath}. * @throws CrawlerSystemException if an error occurs while creating the {@link XPath} instance. */ public XPath createXPath(final Consumer<XPathFactory> builder) { try { final XPathFactory factory = XPathFactory.newInstance(); builder.accept(factory); return factory.newXPath();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java
/** * {@return the type of the dependency}. * A dependency can be a <abbr>JAR</abbr> file, * a modular-<abbr>JAR</abbr> if it is intended to be placed on the module path, * a <abbr>JAR</abbr> containing test classes, <i>etc.</i> * * @see DependencyCoordinates#getType() */ @Nonnull Type getType(); /** * {@return the time at which the dependency will be used}.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java
/** * Supply the user type. * @return The user type. */ OptionalThing<String> supply(); } /** * The supplier of user bean. */ @FunctionalInterface public interface UserBeanSupplier { /** * Supply the user bean. * @return The user bean. */ OptionalThing<FessUserBean> supply(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/InputStreamUtil.java
* * @param file the file (must not be {@literal null}) * @return a {@link FileInputStream} to read from the file * @see FileInputStream#FileInputStream(File) */ public static FileInputStream create(final File file) { assertArgumentNotNull("file", file); try { return new FileInputStream(file); } catch (final IOException e) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/SerializeUtil.java
* * @param obj the object to be serialized (must not be {@literal null}) * @return the deserialized object */ public static Object serialize(final Object obj) { assertArgumentNotNull("obj", obj); final byte[] binary = fromObjectToBinary(obj); return fromBinaryToObject(binary); } /** * Converts an object to a byte array. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSeekResponse.java
* * @return the offset */ public long getOffset() { return this.offset; } /** * {@inheritDoc} * * @see jcifs.internal.smb1.ServerMessageBlock#writeParameterWordsWireFormat(byte[], int) */ @Override protected int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
protected Map<String, String> getEnvMap() { return envMap; } @Override protected File getDesignJspFile(String path) { return new File(desginJspRootFile, path); } @Override protected RequestManager getRequestManager() { return new SimpleRequestManager() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
* * @param id the unique identifier of the data configuration * @return an OptionalEntity containing the DataConfig if found, empty otherwise * @throws IllegalArgumentException if id is null or empty */ public OptionalEntity<DataConfig> getDataConfig(final String id) { return dataConfigBhv.selectByPK(id); } /** * Retrieves a data configuration by its name.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0)