Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for get$installed (0.11 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java

    import org.lastaflute.web.response.JsonResponse;
    
    public class ApiAdminPluginAction extends FessApiAdminAction {
    
        // GET /api/admin/plugin/installed
        @Execute
        public JsonResponse<ApiResult> get$installed() {
            final List<Map<String, String>> list = getAllInstalledArtifacts();
            return asJson(new ApiResult.ApiPluginResponse().plugins(list).status(ApiResult.Status.OK).result());
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/RepositorySystemSupplier.java

            return new DefaultRepositoryConnectorProvider(
                    getRepositoryConnectorFactories(), getRemoteRepositoryFilterManager());
        }
    
        private Installer installer;
    
        public final Installer getInstaller() {
            checkClosed();
            if (installer == null) {
                installer = createInstaller();
            }
            return installer;
        }
    
        protected Installer createInstaller() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

            return new DefaultRepositoryConnectorProvider(
                    getRepositoryConnectorFactories(), getRemoteRepositoryFilterManager());
        }
    
        private Installer installer;
    
        public final Installer getInstaller() {
            checkClosed();
            if (installer == null) {
                installer = createInstaller();
            }
            return installer;
        }
    
        protected Installer createInstaller() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top