Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 299 for myplugin (0.04 sec)

  1. src/main/resources/fess_message_pt_BR.properties

    success.reindex_started=Reindexação iniciada.
    success.bulk_process_started=Processo em massa iniciado.
    success.print_thread_dump=Despejo de threads impresso no arquivo de log.
    success.install_plugin=Instalando o plugin {0}.
    success.delete_plugin=Excluindo o plugin {0}.
    success.upload_file_to_storage={0} carregado.
    success.sso_logout=Sessão encerrada.
    success.update_storage_tags=Tags para {0} atualizadas.
    
    success.crud_create_crud_table = Dados criados.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/PluginXmlFactory.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services.xml;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.plugin.descriptor.PluginDescriptor;
    
    /**
     * Reads and writes a {@link PluginDescriptor} object to/from XML.
     *
     * @since 4.0.0
     */
    @Experimental
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

         * {@return a matcher combining the include and exclude patterns}.
         * If the user did not specify any includes, the given {@code defaultIncludes} are used.
         * These defaults depend on the plugin.
         * For example, the default include of the Java compiler plugin is <code>"**&sol;*.java"</code>.
         *
         * <p>If the user did not specify any excludes, the default is often files generated
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.12.md

    ### SIG CLI
    
    - Added a sample-cli-plugin staging repository and cli-runtime staging repository to help showcase the new kubectl plugins mechanism. ([#67938](https://github.com/kubernetes/kubernetes/pull/67938), [#67658](https://github.com/kubernetes/kubernetes/pull/67658), [@soltysh](https://github.com/soltysh))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  5. src/main/assemblies/common-bin.xml

    			</includes>
    		</fileSet>
    		<fileSet>
    			<filtered>false</filtered>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<includes>
    				<include>module.xml</include>
    				<include>plugin.xml</include>
    			</includes>
    		</fileSet>
    
    		<!-- lib -->
    		<fileSet>
    			<directory>${project.build.directory}/tomcat-lib</directory>
    			<outputDirectory>fess-${project.version}/lib/classes</outputDirectory>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java

            assertEquals("parent-context", childTrace.context());
            assertEquals("child-data", childTrace.data());
        }
    
        @Test
        void testPredefinedContexts() {
            assertEquals("plugin", RequestTrace.CONTEXT_PLUGIN);
            assertEquals("project", RequestTrace.CONTEXT_PROJECT);
            assertEquals("bootstrap", RequestTrace.CONTEXT_BOOTSTRAP);
        }
    
        @Test
        void testNullValues() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  7. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java

    /**
     * Represents an exception that occurs during the invocation of a Maven build or command.
     * This exception is typically thrown when there are errors during the execution of a Maven
     * process, such as build failures, plugin errors, or other runtime issues.
     *
     * @since 4.0.0
     */
    @Experimental
    public class InvokerException extends MavenException {
        /**
         * Constructs a new {@code InvokerException} with the specified detail message.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Nov 13 14:14:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

    - kubelet
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_nl.properties

    success.reindex_started=Herindexering gestart.
    success.bulk_process_started=Bulkproces gestart.
    success.print_thread_dump=Thread-dump afgedrukt naar logbestand.
    success.install_plugin=Plugin {0} wordt geïnstalleerd.
    success.delete_plugin=Plugin {0} wordt verwijderd.
    success.upload_file_to_storage={0} geüpload.
    success.sso_logout=Uitgelogd.
    success.update_storage_tags=Tags voor {0} bijgewerkt.
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java

     *             additional data is needed.
     */
    public record RequestTrace(@Nullable String context, @Nullable RequestTrace parent, @Nullable Object data) {
    
        public static final String CONTEXT_PLUGIN = "plugin";
        public static final String CONTEXT_PROJECT = "project";
        public static final String CONTEXT_BOOTSTRAP = "bootstrap";
    
        public RequestTrace(RequestTrace parent, Object data) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top