- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for installArtifact (0.35 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
*/ public static void installArtifact(final Artifact artifact) { new Thread(() -> { final PluginHelper pluginHelper = ComponentUtil.getPluginHelper(); final Artifact[] artifacts = pluginHelper.getInstalledArtifacts(artifact.getType()); try { pluginHelper.installArtifact(artifact); } catch (final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
import static org.codelibs.fess.app.web.admin.plugin.AdminPluginAction.getAllInstalledArtifacts; import static org.codelibs.fess.app.web.admin.plugin.AdminPluginAction.installArtifact; import java.util.List; import java.util.Map; import org.codelibs.fess.app.web.api.ApiResult; import org.codelibs.fess.app.web.api.admin.FessApiAdminAction; import org.codelibs.fess.helper.PluginHelper.Artifact;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
// Mock install method } }; Artifact artifact = new Artifact("fess-ds-test", "1.0.0", "http://test.com/test.jar"); try { testHelper.installArtifact(artifact); // If we get here, the method executed without throwing assertTrue(true); } catch (Exception e) { fail("Unexpected exception: " + e.getMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} /** * Installs an artifact based on its type. * * @param artifact the artifact to install */ public void installArtifact(final Artifact artifact) { switch (artifact.getType()) { case THEME: install(artifact); ComponentUtil.getThemeHelper().install(artifact); break;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* @throws org.apache.maven.api.services.ArtifactInstallerException if the artifacts installation failed * * @see org.apache.maven.api.services.ArtifactInstaller#install(Session, Collection) */ void installArtifacts(@Nonnull ProducedArtifact... artifacts); /** * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}. * * @param artifacts the artifacts to install
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 36.5K bytes - Viewed (0)