Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 113 for Discovery (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java

         */
        enum Nature {
            /**
             * Query only release repositories to discover versions.
             */
            RELEASE,
            /**
             * Query only snapshot repositories to discover versions.
             */
            SNAPSHOT,
            /**
             * Query both release and snapshot repositories to discover versions.
             * This is the default behavior.
             */
            RELEASE_OR_SNAPSHOT
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

    @Named
    public class SisuDiBridgeModule extends AbstractModule {
    
        protected final boolean discover;
        protected InjectorImpl injector;
    
        public SisuDiBridgeModule() {
            this(true);
        }
    
        public SisuDiBridgeModule(boolean discover) {
            this.discover = discover;
        }
    
        @Override
        protected void configure() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/package-info.java

     * <h3>Utility Classes</h3>
     * <ul>
     *   <li>{@link org.apache.maven.cling.invoker.mvnup.goals.StrategyOrchestrator} - Coordinates strategy execution</li>
     *   <li>{@link org.apache.maven.cling.invoker.mvnup.goals.PomDiscovery} - Discovers POM files in multi-module projects</li>
     *   <li>{@link org.apache.maven.cling.invoker.mvnup.goals.DomUtils} - XML manipulation utilities</li>
     * </ul>
     *
     * <h2>Usage Examples</h2>
     *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/CommonsCliEncryptOptions.java

        }
    
        @Override
        public void displayHelp(ParserRequest request, Consumer<String> printStream) {
            super.displayHelp(request, printStream);
            printStream.accept("");
            // we have no DI here (to discover)
            printStream.accept("Goals:");
            printStream.accept("  diag - display encryption configuration diagnostic");
            printStream.accept("  init - wizard to configure encryption (interactive only)");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 25 17:39:57 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.22.md

    - Resolves an issue with the "ServiceAccountIssuerDiscovery should support OIDC discovery" conformance test failing on clusters which are configured with issuers outside the cluster ([#101589](https://github.com/kubernetes/kubernetes/pull/101589), [@mtaufen](https://github.com/mtaufen)) [SIG Auth and Testing]
    
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/java/org/apache/maven/api/model/ModelObjectProcessor.java

         */
        <T> T process(T object);
    
        /**
         * Process a model object using the first available processor implementation.
         *
         * <p>This method discovers processor implementations via ServiceLoader and
         * uses the first one found. If no implementations are available, the object
         * is returned unchanged. The processor is cached for performance.</p>
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

                                try {
                                    container
                                            .lookup(Injector.class)
                                            .discover(extension.entry().getClassRealm());
                                } catch (Throwable e) {
                                    failures.add(new IllegalStateException(
                                            "Injection failure in "
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/CharEscaper.java

      protected abstract char @Nullable [] escape(char c);
    
      /**
       * Returns the escaped form of a given literal string, starting at the given index. This method is
       * called by the {@link #escape(String)} method when it discovers that escaping is required. It is
       * protected to allow subclasses to override the fastpath escaping function to inline their
       * escaping test. See {@link CharEscaperBuilder} for an example usage.
       *
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.24.md

    - Increase default value of discovery cache TTL for kubectl to 6 hours. ([#107141](https://github.com/kubernetes/kubernetes/pull/107141), [@mk46](https://github.com/mk46))
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  10. impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            assertEquals("0.1.0", mp.getVersion());
        }
    
        @Test
        public void testSubprojectDiscovery() throws Exception {
            File pom = getTestFile("src/test/resources/projects/subprojects-discover/pom.xml");
            ProjectBuildingRequest configuration = newBuildingRequest();
            InternalSession internalSession = InternalSession.from(configuration.getRepositorySession());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 33.7K bytes
    - Viewed (0)
Back to top