- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 447 for PATH (0.01 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
*/ protected abstract String getActionRole(); /** * Writes data to the specified file path. * * @param path the file path to write to * @param data the data to write */ protected void write(final String path, final byte[] data) { LdiFileUtil.write(path, data); } /** * Gets the servlet context. * * @return the servlet context
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
/** * Reads text from a file using the default encoding. * * @param path * The file path. Must not be {@literal null} or empty. * @return The text read from the file. */ public static String readText(final String path) { assertArgumentNotEmpty("path", path); return readText(path, Charset.defaultCharset().name()); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/SearchBody.java
/** * Search request body for path mapping administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Regular expression pattern for path mapping */ public String regex; /** Replacement pattern for path mapping */ public String replacement;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
.generated_files
# # This file is a series of lines, each of the form: # <type> <name> # # Type can be: # path - an exact path to a single file # file-name - an exact leaf filename, regardless of path # path-prefix - a prefix match on the file path # file-prefix - a prefix match of the leaf filename (no path) # paths-from-repo - read a file from the repo and load file paths # file-prefix zz_generated.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Oct 04 23:47:25 UTC 2022 - 750 bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
* * @param path * The {@link Path} to the properties file. If {@code null}, a {@link FileAccessException} is thrown. * @throws FileAccessException * If the file cannot be accessed or created. */ public DynamicProperties(final Path path) { this(path == null ? null : path.toFile()); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java
/** * Form class for handling tag operations in storage management. * This form represents tag data including path, name, and associated metadata. */ public class TagForm { /** * The file or directory path associated with this tag. */ @Required public String path; /** * The name of the tag with a maximum length of 100 characters. */ @Required @Size(max = 100)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsThumbnailQueue.java
this.generator = value; } public String getPath() { checkSpecifiedProperty("path"); return convertEmptyToNull(path); } public void setPath(String value) { registerModifiedProperty("path"); this.path = value; } public String getTarget() { checkSpecifiedProperty("target");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java
assertEquals(Integer.valueOf(expire), provider.provideDefaultExpire()); } } // Test with different path values public void test_differentPathValues() { String[] testPaths = { "/", "/app", "/test/path", "/a/b/c/d", "" }; for (String path : testPaths) { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0) -
guava-gwt/src/com/google/common/base/Base.gwt.xml
have prod supersource, even if they have none. GWT is happy to ignore us when we specify a nonexistent path. (I hope that this workaround does not cause its own problems in the future.) --> <super-source path="super"/> <inherits name="com.google.common.annotations.Annotations" /> <inherits name="com.google.gwt.core.Core" /> <inherits name="com.google.gwt.user.User" />
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 1.4K bytes - Viewed (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/TunnelingUnixSocket.java
*/ final class TunnelingUnixSocket extends UnixSocket { private final File path; private InetSocketAddress inetSocketAddress; TunnelingUnixSocket(File path, UnixSocketChannel channel) { super(channel); this.path = path; } TunnelingUnixSocket(File path, UnixSocketChannel channel, InetSocketAddress address) { this(path, channel); this.inetSocketAddress = address; }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Feb 12 16:33:52 UTC 2019 - 1.9K bytes - Viewed (0)