Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 585 for Plugin2 (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulator.java

         */
        MavenExecutionRequest populateFromToolchains(MavenExecutionRequest request, PersistedToolchains toolchains)
                throws MavenExecutionRequestPopulationException;
    
        /**
         * Injects default values like plugin groups or repositories into the specified execution request.
         *
         * @param request The execution request to populate, must not be {@code null}.
         * @return The populated execution request, never {@code null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    	}
    
    	_, err := s.adm.SetConfigKV(ctx, strings.Join(configCmds, " "))
    	if err != nil {
    		c.Fatalf("unable to setup access management plugin for tests: %v", err)
    	}
    
    	s.RestartIAMSuite(c)
    }
    
    // TestIAM_AMPInternalIDPServerSuite - tests for access management plugin
    func TestIAM_AMPInternalIDPServerSuite(t *testing.T) {
    	for i, testCase := range iamTestSuites {
    		t.Run(
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 22 00:33:43 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    import org.apache.maven.execution.scope.WeakMojoExecutionListener;
    import org.apache.maven.plugin.MojoExecutionException;
    
    /**
     * MojoExecutionScope
     */
    public class MojoExecutionScope extends org.apache.maven.internal.impl.di.MojoExecutionScope
            implements Scope, MojoExecutionListener {
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        public static Path getSitePath(final String... names) {
            return getPath("WEB-INF/", "site", names);
        }
    
        public static Path getPluginPath(final String... names) {
            return getPath("WEB-INF/", "plugin", names);
        }
    
        public static Path getProjectPropertiesFile() {
            return getPath("WEB-INF/", StringUtil.EMPTY, "project.properties");
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 08:52:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

    import org.apache.maven.execution.ExecutionEvent;
    import org.apache.maven.execution.MavenExecutionResult;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.slf4j.ILoggerFactory;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. 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)
  7. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblem;
    import org.apache.maven.model.resolution.UnresolvableModelException;
    import org.apache.maven.plugin.LegacySupport;
    import org.apache.maven.project.DefaultProjectBuildingRequest;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuilder;
    import org.apache.maven.project.ProjectBuildingException;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top