Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for Kata (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/DefaultExtensionRealmCache.java

    import org.codehaus.plexus.classworlds.realm.NoSuchRealmException;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Disposable;
    
    /**
     * Default extension realm cache implementation. Assumes cached data does not change.
     */
    @Named
    @Singleton
    public class DefaultExtensionRealmCache implements ExtensionRealmCache, Disposable {
        /**
         * CacheKey
         */
        protected static class CacheKey implements Key {
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * Sets whether the build should be resumed from the data in the resume.properties file.
         * @param resume Whether or not to resume a previous build.
         * @return This request, never {@code null}.
         */
        MavenExecutionRequest setResume(boolean resume);
    
        /**
         * @return Whether the build should be resumed from the data in the resume.properties file.
         */
        boolean isResume();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <name>snapshot</name>
              <version>1.0.0+</version>
              <association>
                <type>Snapshot</type>
              </association>
              <description>The current snapshot data in use for this version ("groupId/artifactId/version" only)</description>
            </field>
            <field>
              <name>snapshotVersions</name>
              <version>1.1.0+</version>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                                                    .build())
                                            .build();
                                    throw new IOException("Snapshot information corrupted with remote repository data"
                                            + ", please verify that no remote repository uses the id '"
                                            + repository.getId() + "'");
                                }
                            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 30.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListenerTest.java

            final CollectStepData data = mock(CollectStepData.class);
    
            RequestTrace haveItFirst = RequestTrace.newChild(null, data)
                    .newChild("foo")
                    .newChild("bar")
                    .newChild("baz");
            assertThat(ReverseTreeRepositoryListener.lookupCollectStepData(haveItFirst), sameInstance(data));
    
            RequestTrace haveItLast = RequestTrace.newChild(null, "foo")
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * identity of a model. The tag allows for further classification of the associated data on the sole discretion of the
     * model builder.
     *
     */
    public interface ModelCache {
    
        <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data);
    
        <T> T computeIfAbsent(Source path, String tag, Supplier<T> data);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

    /**
     * Caches raw plugin descriptors. A raw plugin descriptor is a descriptor that has just been extracted from the plugin
     * artifact and does not contain any runtime specific data. The cache must not be used for descriptors that hold runtime
     * data like the plugin realm. <strong>Warning:</strong> This is an internal utility interface that is only public for
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

            }
        }
    
        @Override
        public Optional<String> getString(URI relativeSource, Charset charset) {
            requireNonNull(charset, "charset is null");
            Optional<byte[]> data = getBytes(relativeSource);
            return data.map(bytes -> new String(bytes, charset));
        }
    
        @Override
        public void put(Path source, URI relativeTarget) {
            requireNonNull(source, "source is null");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

        }
    
        @SuppressWarnings("unchecked")
        private ConcurrentMap<Key, PluginVersionResult> getCache(PluginVersionRequest request) {
            SessionData data = request.getRepositorySession().getData();
            return (ConcurrentMap<Key, PluginVersionResult>)
                    data.computeIfAbsent(CACHE_KEY, () -> new ConcurrentHashMap<>(256));
        }
    
        private static Key getKey(PluginVersionRequest request) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 15.7K bytes
    - Viewed (0)
Back to top