- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 407 for Jar (0.01 seconds)
-
android/guava/src/com/google/common/reflect/ClassPath.java
import java.util.HashSet; import java.util.LinkedHashMap; import java.util.Map; import java.util.NoSuchElementException; import java.util.Set; import java.util.jar.Attributes; import java.util.jar.JarEntry; import java.util.jar.JarFile; import java.util.jar.Manifest; import java.util.logging.Logger; import org.jspecify.annotations.Nullable; /**
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 24.8K bytes - Click Count (0) -
compat/maven-resolver-provider/pom.xml
<artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>package-sisu</id> <goals> <goal>jar</goal> </goals> <phase>package</phase> <configuration> <classifier>sisu</classifier> <classesDirectory>${project.build.directory}/jar-sisu</classesDirectory>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Nov 26 10:37:56 GMT 2025 - 6.7K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
if ("JAR".equals(packaging)) { plugins = new LinkedHashSet<>(); plugins.add(newPlugin("maven-compiler-plugin", "compile", "testCompile")); plugins.add(newPlugin("maven-resources-plugin", "resources", "testResources")); plugins.add(newPlugin("maven-surefire-plugin", "test")); plugins.add(newPlugin("maven-jar-plugin", "jar"));
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
lastLoadedTime = now; } return dataStoreNames; } /** * Loads the list of available data store names by scanning plugin JAR files. * This method searches for 'fess_ds++.xml' configuration files within JAR files * in the data store plugin directory and extracts component class names. * * <p>The method uses secure XML parsing features to prevent XXE attacks andCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java
File jarExpandDir = getJarExpandDir(); // We need to clean up to make sure old dependencies don't linger getProject().delete(jarExpandDir); jars.forEach(jar -> { FileTree jarFiles = getProject().zipTree(jar); getProject().copy(spec -> { spec.from(jarFiles); spec.into(jarExpandDir); // exclude classes from multi release jars
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 17 08:59:22 GMT 2021 - 16.2K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/TypeDeriver.java
private final ArrayDeque<ArtifactType> stack; private TypeDeriverVisitor(ArtifactTypeRegistry registry) { this.registry = requireNonNull(registry); this.jar = requireType(Type.JAR); this.classpathJar = requireType(Type.CLASSPATH_JAR); this.modularJar = requireType(Type.MODULAR_JAR); this.processor = requireType(Type.PROCESSOR);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Mar 28 11:22:05 GMT 2026 - 8K bytes - Click Count (0) -
guava-gwt/src/com/google/common/DummyJavadocClass.java
* limitations under the License. */ package com.google.common; /** * A dummy class so that the Maven Javadoc plugin will produce a jar. If it doesn't produce a jar, * then the Sonatype repository manager issues an error. * * @author Chris Povirk */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jan 07 19:38:21 GMT 2020 - 848 bytes - Click Count (0) -
build-tools-internal/src/integTest/java/org/elasticsearch/gradle/internal/BuildPluginIT.java
try (ZipFile zipFile = new ZipFile(new File(getBuildDir(projectName()), "distributions/elasticsearch.build.jar"))) { ZipEntry licenseEntry = zipFile.getEntry("META-INF/LICENSE.txt"); ZipEntry noticeEntry = zipFile.getEntry("META-INF/NOTICE.txt"); assertNotNull("Jar does not have META-INF/LICENSE.txt", licenseEntry);
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.7K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt
) /** * Load cookies from the jar for an HTTP request to [url]. This method returns a possibly * empty list of cookies for the network request. * * Simple implementations will return the accepted cookies that have not yet expired and that * [match][Cookie.matches] [url]. */ fun loadForRequest(url: HttpUrl): List<Cookie> companion object { /** A cookie jar that never accepts any cookies. */ @JvmField
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 2.4K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt
import org.gradle.api.tasks.PathSensitive import org.gradle.api.tasks.PathSensitivity import java.io.BufferedOutputStream import java.io.File import java.io.FileOutputStream import java.util.jar.JarFile import java.util.jar.JarOutputStream @CacheableTransform abstract class Minify : TransformAction<Minify.Parameters> { interface Parameters : TransformParameters { @get:Input
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Dec 18 11:46:45 GMT 2025 - 4.9K bytes - Click Count (0)