Search Options

Results per page
Sort
Preferred Languages
Advance

Results 501 - 510 of 688 for pluginB (0.06 sec)

  1. docs/ko/docs/tutorial/body.md

    /// tip | "팁"
    
    만약 <a href="https://www.jetbrains.com/pycharm/" class="external-link" target="_blank">PyCharm</a>를 편집기로 사용한다면, <a href="https://github.com/koxudaxi/pydantic-pycharm-plugin/" class="external-link" target="_blank">Pydantic PyCharm Plugin</a>을 사용할 수 있습니다.
    
    다음 사항을 포함해 Pydantic 모델에 대한 편집기 지원을 향상시킵니다:
    
    * 자동 완성
    * 타입 확인
    * 리팩토링
    * 검색
    * 점검
    
    ///
    
    ## 모델 사용하기
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

    import org.apache.maven.internal.impl.InternalSession;
    import org.apache.maven.model.Dependency;
    import org.apache.maven.model.Repository;
    import org.apache.maven.model.RepositoryPolicy;
    import org.apache.maven.plugin.LegacySupport;
    import org.apache.maven.project.artifact.DefaultMetadataSource;
    import org.apache.maven.repository.legacy.LegacyRepositorySystem;
    import org.codehaus.plexus.PlexusContainer;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl;
    
    import java.util.function.Supplier;
    
    import org.apache.maven.api.plugin.Log;
    import org.slf4j.Logger;
    
    import static java.util.Objects.requireNonNull;
    
    public class DefaultLog implements Log {
        private final Logger logger;
    
        public DefaultLog(Logger logger) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

    import org.apache.maven.artifact.repository.ArtifactRepositoryFactory;
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.plugin.LegacySupport;
    import org.apache.maven.repository.MirrorSelector;
    import org.apache.maven.settings.Mirror;
    import org.apache.maven.settings.Proxy;
    import org.apache.maven.settings.Server;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. compat/maven-embedder/src/site/apt/logging.apt

    ~~ TODO document META-INF/maven/slf4j-configuration.properties
    
    * Getting Logger Instance
    
     Starting with Maven 3.1.0, SLF4J Logger can be used directly. This technique can be used safely in Maven core
     components or in plugins/component not requiring compatibility with previous Maven versions.
    
    +-----+
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    public class MyClass
    {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.logging;
    
    /**
     * This interface supplies the API for providing feedback to the user from the <code>Mojo</code>, using standard
     * <code>Maven</code> channels.<br>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

            return request;
        }
    
        //
        //
        //
    
        private void populateDefaultPluginGroups(MavenExecutionRequest request) {
            request.addPluginGroup("org.apache.maven.plugins");
            request.addPluginGroup("org.codehaus.mojo");
        }
    
        private void localRepository(MavenExecutionRequest request) throws MavenExecutionRequestPopulationException {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java

        }
    
        public Artifact createPluginArtifact(String groupId, String artifactId, VersionRange versionRange) {
            return createArtifact(groupId, artifactId, versionRange, "maven-plugin", null, Artifact.SCOPE_RUNTIME, null);
        }
    
        public Artifact createProjectArtifact(String groupId, String artifactId, String version, String scope) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/testing.md

    ```console
    $ pytest
    
    ================ test session starts ================
    platform linux -- Python 3.6.9, pytest-5.3.5, py-1.8.1, pluggy-0.13.1
    rootdir: /home/user/code/superawesome-cli/app
    plugins: forked-1.1.3, xdist-1.31.0, cov-2.8.1
    collected 6 items
    
    ---> 100%
    
    test_main.py <span style="color: green; white-space: pre;">......                            [100%]</span>
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * {@link Session#resolveDependencies resolveDependencies(...)} when at least one dependency
         * cannot be associated to any type specified in the {@code desiredTypes} argument.
         * Plugins can choose to report a warning to users when unresolved paths exist.
         */
        PathType UNRESOLVED = new PathType() {
            @Override
            public String name() {
                return "UNRESOLVED";
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top