Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for waare (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java

     * It provides API: <ol>
     * <li>to retrieve every toolchains available in user settings,</li>
     * <li>to store chosen toolchain into build context for later use by toolchain-aware plugins.</li>
     * </ol>
     *
     * @since 2.0.9
     * @see ToolchainManager#getToolchainFromBuildContext(String, MavenSession)
     */
    public interface ToolchainManagerPrivate {
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Chars.java

     * either {@link Character} or {@link Arrays}.
     *
     * <p>All the operations in this class treat {@code char} values strictly numerically; they are
     * neither Unicode-aware nor locale-dependent.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java

    package org.apache.maven.repository.metadata;
    
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    
    import org.apache.maven.artifact.ArtifactScopeEnum;
    
    /**
     * classpath container that is aware of the classpath scope
     *
     *
     */
    @Deprecated
    public class ClasspathContainer implements Iterable<ArtifactMetadata> {
        private List<ArtifactMetadata> classpath;
    
        private ArtifactScopeEnum scope;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/eventbus/EventBus.java

     * </ul>
     *
     * <h2>EventBus Summary</h2>
     *
     * <p>The EventBus allows publish-subscribe-style communication between components without requiring
     * the components to explicitly register with one another (and thus be aware of each other). It is
     * designed exclusively to replace traditional Java in-process event distribution using explicit
     * registration. It is not a general-purpose publish-subscribe system, nor is it intended
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 25 16:37:57 GMT 2021
    - 12.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
       *       of the assumption, in which case the equality check before and after serialization will
       *       fail.
       *   <li>If the constructor or factory method takes a parameter that {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 19:22:18 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

    /**
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     * This class in particular may spontaneously self-combust and be replaced by a plexus-compliant thread aware
     * logger implementation at any time.
     *
     * @since 3.0
     */
    @SuppressWarnings({"SynchronizationOnLocalVariableOrMethodParameter"})
    public class ThreadOutputMuxer {
        private final Iterator<ProjectSegment> projects;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManager.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import java.util.List;
    import java.util.Map;
    
    import org.apache.maven.execution.MavenSession;
    
    /**
     * Public API for a toolchain-aware plugin to get expected toolchain instance.
     *
     * @since 2.0.9
     */
    public interface ToolchainManager {
    
        // NOTE: Some plugins like Surefire access this field directly!
        @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/artifact/ProjectArtifactMetadata.java

                    localRepository.getBasedir(), localRepository.pathOfLocalRepositoryMetadata(this, remoteRepository));
    
            // ----------------------------------------------------------------------------
            // I'm fully aware that the file could just be moved using File.rename but
            // there are bugs in various JVM that have problems doing this across
            // different filesystem. So we'll incur the small hit to actually copy
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/escape/Escapers.java

       *   <li>{@code safeMax == Character.MAX_VALUE}
       *   <li>{@code unsafeReplacement == null}
       * </ul>
       *
       * <p>For performance reasons escapers created by this builder are not Unicode aware and will not
       * validate the well-formedness of their input.
       */
      public static Builder builder() {
        return new Builder();
      }
    
      /**
       * A builder for simple, fast escapers.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 10.5K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
       *       of the assumption, in which case the equality check before and after serialization will
       *       fail.
       *   <li>If the constructor or factory method takes a parameter that {@link
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri May 12 19:22:18 GMT 2023
    - 17.5K bytes
    - Viewed (0)
Back to top