Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 37 of 37 for get_model (0.43 seconds)

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

         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the underlying toolchain model.
         *
         * @return the toolchain model
         */
        ToolchainModel getModel();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name
         * @return file representing the tool executable, or null if the tool cannot be found
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 11 12:33:57 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

        public Plugin getPluginDefinitionForPrefix(String prefix, MavenSession session, MavenProject project) {
            PluginPrefixRequest request = new DefaultPluginPrefixRequest(prefix, session);
            request.setPom(project.getModel());
    
            try {
                PluginPrefixResult result = pluginPrefixResolver.resolve(request);
    
                Plugin plugin = new Plugin();
                plugin.setGroupId(result.getGroupId());
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformer.java

                deferDeleteFile(consumer);
    
                project.addAttachedArtifact(createConsumerPomArtifact(project, consumer, session));
            } else if (project.getModel().getDelegate().isRoot()) {
                throw new IllegalStateException(
                        "The use of the root attribute on the model requires the buildconsumer feature to be active");
            }
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 04 19:49:40 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

        }
    
        @Override
        public Model build(RepositorySystemSession session, MavenProject project, ModelSource src)
                throws ModelBuilderException {
            Model model = project.getModel().getDelegate();
            boolean flattenEnabled = Features.consumerPomFlatten(session.getConfigProperties());
            String packaging = model.getPackaging();
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Mar 04 19:49:40 GMT 2026
    - 22.3K bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

        }
    
        @Override
        public Model findModel(Artifact artifact) {
            MavenProject project = getProject(artifact);
            return project == null ? null : project.getModel().getDelegate();
        }
    
        //
        // Implementation
        //
    
        private File findArtifact(MavenProject project, Artifact artifact, boolean checkUptodate) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Dec 15 11:20:38 GMT 2025
    - 24.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                logger.debug("Initialized {} with timeout: {}ms", getClass().getSimpleName(), timeout);
            }
            logger.info("[LLM] {} initialized. model={}, timeout={}ms, maxConcurrent={}", getName(), getModel(), getTimeout(),
                    getMaxConcurrentRequests());
    
            concurrencyLimiter = new Semaphore(getMaxConcurrentRequests());
    
            startAvailabilityCheck();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

                return true;
            }
    
            @Override
            protected int getTimeout() {
                return 30000;
            }
    
            @Override
            protected String getModel() {
                return "test-model";
            }
    
            @Override
            protected int getAvailabilityCheckInterval() {
                return 0;
            }
    
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
Back to Top