Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for supplied (0.17 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                @Nullable
                @Override
                @SuppressWarnings("unchecked")
                public <T> T computeIfAbsent(@Nonnull Key<T> key, @Nonnull Supplier<T> supplier) {
                    return (T) data.computeIfAbsent(key, (Supplier<Object>) supplier);
                }
            };
        }
    
        @Nonnull
        @Override
        public LocalRepository getLocalRepository() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/mdo/profiles.mdo

              <name>activeProfiles</name>
              <version>1.0.0</version>
              <description><![CDATA[
                List of manually-activated build profiles, specified in the order in which
                they should be applied.
              ]]></description>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
          </fields>
        </class>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  3. api/maven-api-settings/src/main/mdo/settings.mdo

              <name>activeProfiles</name>
              <version>1.0.0+</version>
              <description>
                List of manually-activated build profiles, specified in the order in which
                they should be applied.
              </description>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * 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)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

        void put(Key key, PluginDescriptor pluginDescriptor);
    
        PluginDescriptor get(Key key);
    
        PluginDescriptor get(Key key, PluginDescriptorSupplier supplier)
                throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException;
    
        void flush();
    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)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

                List<RemoteRepository> repositories,
                RepositorySystemSession session);
    
        CacheRecord get(Key key);
    
        CacheRecord get(Key key, PluginRealmSupplier supplier) throws PluginResolutionException, PluginContainerException;
    
        CacheRecord put(Key key, ClassRealm pluginRealm, List<Artifact> pluginArtifacts);
    
        void flush();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Throwable; private boolean nullsOk(); protected void handleDataPointSucce(); } org/junit/experimental/theories/suppliers/TestedOn.class package org.junit.experimental.theories.suppliers; public abstract interface TestedOn extends annotation.Annotation { public abstract int[] ints(); } org/junit/experimental/theories/suppliers/TestedOnSupplier.class package org.junit.experimental.theories.suppliers; public synchronized class TestedOnSupplier extends org.junit.experimental.theories.ParameterSupplier { public...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top