- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 3,664 for findall (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
final String sessionId = "test"; final List<PathMapping> pathMappingList = new ArrayList<PathMapping>(); final PathMapping pathMapping1 = new PathMapping(); pathMapping1.setRegex("file:///home/"); pathMapping1.setReplacement("http://localhost/"); pathMappingList.add(pathMapping1); final PathMapping pathMapping2 = new PathMapping();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
final String mimeType = responseData.getMimeType(); final String extension = getExtensionFromMimeType(mimeType); final File tempFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_", extension); try { CopyUtil.copy(responseData.getResponseBody(), tempFile); final String tempPath = tempFile.getAbsolutePath();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 16.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
*/ protected void executeSuggestCreator() { final List<String> cmdList = new ArrayList<>(); final String cpSeparator = SystemUtils.IS_OS_WINDOWS ? ";" : ":"; final ServletContext servletContext = ComponentUtil.getComponent(ServletContext.class); final ProcessHelper processHelper = ComponentUtil.getProcessHelper(); final FessConfig fessConfig = ComponentUtil.getFessConfig();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
public class DefaultMaven implements Maven { private final Logger logger = LoggerFactory.getLogger(getClass()); private final Lookup lookup; private final ExecutionEventCatapult eventCatapult; private final LegacySupport legacySupport; private final SessionScope sessionScope; private final RepositorySystemSessionFactory repositorySessionFactory; private final GraphBuilder graphBuilder;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Dec 29 10:43:38 GMT 2025 - 28.8K bytes - Click Count (1) -
android/guava/src/com/google/common/util/concurrent/Monitor.java
* Finally, the programmer no longer has to hand-code the wait loop, and therefore doesn't have to * remember to use {@code while} instead of {@code if}. * * {@snippet : * public class SafeBox<V> { * private V value; * private final Monitor monitor = new Monitor(); * private final Monitor.Guard valuePresent = monitor.newGuard(() -> value != null);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jan 28 22:39:02 GMT 2026 - 43.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java
private final boolean debugEnabled; private final LinkedList<Object> interpolationTargets; private final StringSearchModelInterpolator modelInterpolator; private final Logger logger; private final List<ValueSource> valueSources; private final List<InterpolationPostProcessor> postProcessors; InterpolateObjectAction( Object target,Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
*/ protected void executeThumbnailGenerator() { final List<String> cmdList = new ArrayList<>(); final String cpSeparator = SystemUtils.IS_OS_WINDOWS ? ";" : ":"; final ServletContext servletContext = ComponentUtil.getComponent(ServletContext.class); final ProcessHelper processHelper = ComponentUtil.getProcessHelper(); final FessConfig fessConfig = ComponentUtil.getFessConfig();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SID.java
resolve(origin_server, origin_auth); } catch (final IOException ioe) {} finally { origin_server = null; origin_auth = null; } } } static SID[] getGroupMemberSids0(final DcerpcHandle handle, final SamrDomainHandle domainHandle, final SID domsid, final int rid, final int flags) throws IOException { SamrAliasHandle aliasHandle = null;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.5K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
public static final int SMB_DIRECT_RESPONSE_REQUESTED = 0x00000001; // Default RDMA settings public static final int DEFAULT_RDMA_READ_WRITE_SIZE = 1048576; // 1MB public static final int DEFAULT_RECEIVE_CREDIT_MAX = 255; public static final int DEFAULT_SEND_CREDIT_TARGET = 32; public static final int DEFAULT_MAX_RECEIVE_SIZE = 8192;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
*/ protected void executePython() { final List<String> cmdList = new ArrayList<>(); final ServletContext servletContext = ComponentUtil.getComponent(ServletContext.class); final ProcessHelper processHelper = ComponentUtil.getProcessHelper(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (StringUtil.isBlank(filename)) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.2K bytes - Click Count (0)