- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 359 for robot (0.01 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java
import org.apache.maven.api.services.ModelBuilder; import org.apache.maven.api.services.model.LifecycleBindingsInjector; import org.apache.maven.bridge.MavenRepositorySystem; import org.apache.maven.model.root.RootLocator; import org.eclipse.aether.RepositorySystem; @Named("classpath") @Singleton @Deprecated public class TestProjectBuilder extends DefaultProjectBuilder { @Inject public TestProjectBuilder(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbFileTest.java
assertEquals("share/", new SmbFile("smb1://server/share/").getName()); // Test server name extraction assertEquals("server/", new SmbFile("smb1://server/").getName()); // Test root name assertEquals("smb1://", new SmbFile("smb1://").getName()); } @Test public void testGetParent() throws MalformedURLException { // Test parent of a file
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
android/guava-testlib/pom.xml
</compileSourceRoots> <!-- JPMS needs access to the module sources to complete a modular Java build. We also need to override the base compiler settings (in the root `pom.xml`) to enable MRJAR output. --> <compilerArgs combine.self="override"> <arg>-sourcepath</arg> <arg>${project.basedir}/src</arg>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
guava-testlib/pom.xml
</compileSourceRoots> <!-- JPMS needs access to the module sources to complete a modular Java build. We also need to override the base compiler settings (in the root `pom.xml`) to enable MRJAR output. --> <compilerArgs combine.self="override"> <arg>-sourcepath</arg> <arg>${project.basedir}/src</arg>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java
final String message = "Test stack trace"; final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY); final Exception cause = new RuntimeException("Root cause"); // Execute final SsoMessageException exception = new SsoMessageException(messageCode, message, cause); // Verify stack trace is available
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java
* something. Try to treat it like a RuntimeException. If we overflow the stack again, the * resulting Error will propagate upward up to the root call to set(). */ setException(e); return; } T transformResult; try { transformResult = doTransform(localFunction, sourceResult); } catch (Throwable t) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 20 18:03:37 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
* Users with admin roles are redirected to the dashboard, while other users are redirected * to their designated admin action class or to the root if no specific action is available. * * @param user the authenticated user bean containing role information * @return HTML response redirecting to the appropriate admin interface */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/assemblies/files/generate-thumbnail
check_command() { cmd=$1 cmd_path=$(command -v "${cmd}") if [[ ! -e "${cmd_path}" ]] ; then echo "${cmd} does not exist." exit 1 fi } if [[ x"$HOME" = "x/root" ]] ; then HOME=/var/lib/fess fi if [[ x"${cmd_type}" = "xmsoffice" ]] ; then check_command convert check_command pdftoppm check_command unoconv tmp_pdf_file=/tmp/thumbnail.$$.pdf
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jun 12 13:13:28 UTC 2023 - 2.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
assertFalse(Files.isFile().apply(dir)); assertFalse(Files.isDirectory().apply(asciiFile)); assertTrue(Files.isFile().apply(asciiFile)); } /** Returns a root path for the file system. */ private static File root() { return File.listRoots()[0]; } /** Returns a {@code File} object for the given path parts. */ private static File file(String first, String... more) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SMBProtocolDowngradeExceptionTest.java
} @Test void messageAndCauseConstructor_acceptsNullMessage_edgeCase() { // Arrange Throwable cause = new RuntimeException("root cause"); // Act SMBProtocolDowngradeException ex = new SMBProtocolDowngradeException(null, cause); // Assert - null message retained; cause preserved assertNull(ex.getMessage());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0)