- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 685 for platin (0.09 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java
import org.apache.maven.model.Plugin; import org.apache.maven.plugin.InvalidPluginDescriptorException; import org.apache.maven.plugin.InvalidPluginException; import org.apache.maven.plugin.LegacySupport; import org.apache.maven.plugin.MavenPluginManager; import org.apache.maven.plugin.MojoExecution; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/NullnessCasts.java
@GwtCompatible @ElementTypesAreNonnullByDefault final class NullnessCasts { /** * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that * that conversion is safe. * * <p>This method is intended to help with usages of type parameters that have {@linkplain
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 10 20:36:34 UTC 2022 - 3.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java
+ " conflicting coordinates: {}:{}." + " Your JAR contains rogue Maven Plugin metadata." + " Possible causes may be: shaded into this JAR some Maven Plugin or some rogue resource.",
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.9K bytes - Viewed (0) -
pom.xml
</execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <configuration> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <charset>UTF-8</charset> <source>8</source> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version>
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Thu Oct 03 17:04:48 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-settings-builder/pom.xml
<scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> <configuration> <parameter> <excludes>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
return createRealm(getKey(plugin, false), RealmType.Plugin, parent, parentImports, foreignImports, artifacts); } private static String getKey(Plugin plugin, boolean extension) { String version = ArtifactUtils.toSnapshotVersion(plugin.getVersion()); return (extension ? "extension>" : "plugin>") + plugin.getGroupId() + ":" + plugin.getArtifactId() + ":" + version; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
samples/compare/src/test/kotlin/okhttp3/compare/JavaHttpClientTest.kt
.header("Accept", "text/plain") .build() val response = httpClient.send(request, BodyHandlers.ofString()) assertThat(response.statusCode()).isEqualTo(200) assertThat(response.body()).isEqualTo("hello, Java HTTP Client") val recorded = server.takeRequest() assertThat(recorded.headers["Accept"]).isEqualTo("text/plain")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.7K bytes - Viewed (0) -
tensorflow/api_template_v1.__init__.py
_module_dir = _module_util.get_parent_dir_for_name( "keras.api._v1.keras.__internal__.legacy.rnn_cell") _current_module.nn.__path__ = [_module_dir] + _current_module.nn.__path__ del importlib # Load all plugin libraries from site-packages/tensorflow-plugins if we are # running under pip. # TODO(gunan): Find a better location for this code snippet. from tensorflow.python.framework import load_library as _ll
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 7.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
} static Lifecycle.Phase phase(String name, Plugin plugin) { return new DefaultPhase( name, Collections.singletonList(plugin), Collections.emptyList(), Collections.emptyList()); } static Lifecycle.Phase phase(String name, Lifecycle.Link link, Plugin plugin) { return new DefaultPhase( name, Collections.singletonList(plugin), Collections.singletonList(link), Collections.emptyList());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
*/ package org.codelibs.fess.app.web.api.admin.plugin; import static org.codelibs.fess.app.web.admin.plugin.AdminPluginAction.deleteArtifact; import static org.codelibs.fess.app.web.admin.plugin.AdminPluginAction.getAllAvailableArtifacts; 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;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.9K bytes - Viewed (0)