Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 134 for Resolved (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        @Nonnull
        Nature getNature();
    
        /**
         * Creates a version range resolver request using the session's repositories.
         *
         * @param session the session to use, must not be {@code null}
         * @param artifactCoordinates the artifact coordinates whose version range should be resolved, must not be {@code null}
         * @return the version range resolver request, never {@code null}
         */
        @Nonnull
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Dec 16 13:41:14 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/ExtensionResolutionException.java

    /**
     * Exception occurring trying to resolve a plugin.
     *
     */
    @Deprecated
    public class ExtensionResolutionException extends Exception {
    
        private final CoreExtension extension;
    
        public ExtensionResolutionException(CoreExtension extension, Throwable cause) {
            super(
                    "Extension " + extension.getId() + " or one of its dependencies could not be resolved: "
                            + cause.getMessage(),
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/job/IndexExportJob.java

                    sanitized.append(component);
                }
    
                final Path resolved = Paths.get(exportPath, sanitized.toString()).normalize();
                final Path baseDir = Paths.get(exportPath).normalize();
                if (!resolved.startsWith(baseDir)) {
                    logger.warn("Path traversal detected: url={}, resolved={}", url, resolved);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

         * Implementation may override with absolute path instead.
         */
        default Path directory() {
            Path src = Path.of("src");
            return module().map(src::resolve)
                    .orElse(src)
                    .resolve(scope().id())
                    .resolve(language().id());
        }
    
        /**
         * {@return the list of patterns for the files to include}
         * The path separator is {@code /} on all platforms, including Windows.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Nov 07 13:11:07 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  5. compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

    import org.apache.maven.artifact.metadata.SwitchableMetadataSource;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.resolver.ArtifactResolutionRequest;
    import org.apache.maven.artifact.resolver.ArtifactResolutionResult;
    import org.apache.maven.artifact.resolver.ResolutionErrorHandler;
    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.DefaultMavenExecutionResult;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Dec 16 13:41:14 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            // Some providers for the report files (Japicmp) are not memoizable internally and require project services to be resolved.
            // That's why we have to manually resolve them at the right point in time and explicitly memoize the results
            fun resolve() {
                // This makes `lazy` store the resolved value
                file
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  7. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        }
    
        /**
         * Resolves the runtime dependencies needed to build a SearchLog.
         *
         * @param params The search request parameters.
         * @param fessConfig The Fess configuration.
         * @return The resolved search log context.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/OsddHelper.java

                return null;
            }
            final String path = LaServletContextUtil.getServletContext().getRealPath(osddPath);
            if (path == null) {
                logger.warn("OSDD file path could not be resolved: {}", osddPath);
                return null;
            }
            final File osddFile = new File(path);
            if (!osddFile.isFile()) {
                logger.warn("OSDD path is not a file: {}", path);
                return null;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * </p>
         * <p>
         * This method is the foundation for {@link SourceRoot#targetPath(Project)} path resolution.
         * When a {@link SourceRoot} has a relative {@code targetPath}, it is resolved against the
         * output directory returned by this method for the source root's scope. This ensures that:
         * </p>
         * <ul>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Nov 07 13:11:07 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        TypeResolver typeResolver = TypeResolver.covariantly(parameterized.getClass());
        ParameterizedType resolved =
            (ParameterizedType) typeResolver.resolveType(parameterized.parameterizedType());
        assertEquals(TypeTokenResolutionTest.class, resolved.getOwnerType());
        assertEquals(Bar.class, resolved.getRawType());
        assertThat(resolved.getActualTypeArguments()).asList().contains(String.class);
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 19.6K bytes
    - Click Count (0)
Back to Top