- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for artifactType (0.08 sec)
-
src/main/java/org/codelibs/fess/helper/PluginHelper.java
throw new IORuntimeException(e); } } public Artifact[] getInstalledArtifacts(final ArtifactType artifactType) { if (artifactType == ArtifactType.UNKNOWN) { final File[] jarFiles = ResourceUtil.getPluginJarFiles((d, n) -> { for (final ArtifactType type : ArtifactType.values()) { if (n.startsWith(type.getId())) { return false;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
final List<Map<String, String>> result = new ArrayList<>(); for (final PluginHelper.ArtifactType artifactType : PluginHelper.ArtifactType.values()) { result.addAll(Arrays.stream(pluginHelper.getAvailableArtifacts(artifactType)).map(AdminPluginAction::beanToMap) .collect(Collectors.toList())); } return result; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-atlassian-13.2.0.jar"); assertEquals("fess-ds-atlassian", artifact.getName()); assertEquals("13.2.0", artifact.getVersion()); } public void test_getArtifactFromFileName2() { Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-atlassian-13.2.1-20190708.212247-1.jar");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 12:38:38 UTC 2024 - 5.9K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/TypeRegistryAdapter.java
this.typeRegistry = requireNonNull(typeRegistry, "typeRegistry"); } @Override public ArtifactType get(String typeId) { Type type = typeRegistry.require(typeId); if (type instanceof ArtifactType) { return (ArtifactType) type; } if (type != null) { return new DefaultType( type.id(),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java
import org.eclipse.aether.artifact.ArtifactType; import static java.util.Objects.requireNonNull; /** * Default implementation of {@link Type} and Resolver {@link ArtifactType}. * * @since 4.0.0 * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Deprecated(since = "4.0.0") public class DefaultType implements Type, ArtifactType { private final String id;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
from.attribute(ARTIFACT_TYPE, 'zip') to.attribute(ARTIFACT_TYPE, 'gradle-libs-dir') } registerTransform(FindGradleClasspath) { from.attribute(ARTIFACT_TYPE, 'gradle-libs-dir') to.attribute(ARTIFACT_TYPE, 'gradle-classpath') } dependencies.registerTransform(FindGradleJars) { from.attribute(ARTIFACT_TYPE, 'gradle-libs-dir')
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 08:15:16 UTC 2024 - 9.1K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt
private val zipEntryBaseTimestamp = LocalDateTime.of(1980, 2, 1, 0, 0, 0) .atZone(ZoneId.systemDefault()).toInstant().toEpochMilli() object Attributes { val artifactType = Attribute.of("artifactType", String::class.java) val minified = Attribute.of("minified", Boolean::class.javaObjectType) } class JarAnalyzer( private val shadowPackage: String,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Oct 28 12:55:30 UTC 2024 - 6.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
import org.eclipse.aether.RepositorySystem; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.artifact.Artifact; import org.eclipse.aether.artifact.ArtifactProperties; import org.eclipse.aether.artifact.ArtifactType; import org.eclipse.aether.artifact.ArtifactTypeRegistry; import org.eclipse.aether.artifact.DefaultArtifact; import org.eclipse.aether.artifact.DefaultArtifactType; import org.eclipse.aether.graph.Dependency;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
import org.codelibs.core.stream.StreamUtil; import org.codelibs.fess.exception.ThemeException; import org.codelibs.fess.helper.PluginHelper.Artifact; import org.codelibs.fess.helper.PluginHelper.ArtifactType; import org.codelibs.fess.util.ResourceUtil; public class ThemeHelper { private static final Logger logger = LogManager.getLogger(ThemeHelper.class); public void install(final Artifact artifact) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.7K bytes - Viewed (0)