Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ngquery (0.14 sec)

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

        }
    
        /**
         * Create a key using the given class and id.
         */
        static <T> Key<T> key(Class<T> clazz, Object id) {
            return new Key<>(clazz, id);
        }
    
        /**
         * Key used to query the session data
         * @param <T> the type of the object associated to this key
         */
        final class Key<T> {
    
            private final Class<T> type;
            private final Object id;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionRequest.java

                ArtifactMetadata query, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories) {
            this.query = query;
            this.localRepository = localRepository;
            this.remoteRepositories = remoteRepositories;
        }
    
        // --------------------------------------------------------------------
        public ArtifactMetadata getQuery() {
            return query;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java

         *
         * @param plugin The plugin for which to resolve a version, must not be {@code null}.
         * @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());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.3K bytes
    - Viewed (0)
Back to top