Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 889 for Plugin0 (0.04 sec)

  1. CHANGELOG/CHANGELOG-1.13.md

    - kubelet
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java

            printStream.accept("      --plugins         Upgrade plugins known to fail with Maven 4");
            printStream.accept(
                    "  -a, --all             Apply all upgrades (equivalent to --model-version 4.1.0 --infer --model --plugins)");
            printStream.accept("");
            printStream.accept("Default behavior: --model --plugins --infer are applied if no other options are specified");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:48:39 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

      In other words, your `PreFilter`/`Filter` plugin can return a Skip status in `PreFilter` if the plugin does nothing in Filter for that Pod.
      Scheduler skips `NodeAffinity` Filter plugin when `NodeAffinity` Filter plugin has nothing to do with a Pod.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginLoaderException.java

            super(message, cause);
            pluginKey = plugin.getKey();
        }
    
        public PluginLoaderException(Plugin plugin, String message, InvalidVersionSpecificationException cause) {
            super(message, cause);
            pluginKey = plugin.getKey();
        }
    
        public PluginLoaderException(Plugin plugin, String message, InvalidPluginException cause) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

        }
    
        private Plugin createPlugin(MavenProject project) {
            return createPlugin(project.getGroupId(), project.getArtifactId(), project.getVersion());
        }
    
        private Plugin createPlugin(String groupId, String artifactId, String version) {
            Plugin plugin = new Plugin();
            plugin.setGroupId(groupId);
            plugin.setArtifactId(artifactId);
            plugin.setVersion(version);
            return plugin;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

        }
    
        private Artifact toArtifact(Plugin plugin, RepositorySystemSession session) {
            return new DefaultArtifact(
                    plugin.getGroupId(),
                    plugin.getArtifactId(),
                    null,
                    "jar",
                    plugin.getVersion(),
                    session.getArtifactTypeRegistry().get("maven-plugin"));
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 15:32:43 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Scheduler skips NodeAffinity Score plugin when NodeAffinity Score plugin has nothing to do with a Pod.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  8. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  9. docs/de/docs/alternatives.md

    Marshmallow und Webargs bieten Validierung, Parsen und Serialisierung als Plugins.
    
    Es fehlt jedoch noch die Dokumentation. Dann wurde APISpec erstellt.
    
    Es ist ein Plugin für viele Frameworks (und es gibt auch ein Plugin für Starlette).
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 27.4K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java

         * @param session The repository session to use, must not be {@code null}.
         * @param repositories The plugin repositories to query, may be {@code null}.
         */
        public DefaultPluginVersionRequest(
                Plugin plugin, RepositorySystemSession session, List<RemoteRepository> repositories) {
            setGroupId(plugin.getGroupId());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top