Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getContextValue (0.12 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            @SuppressWarnings("unchecked")
            Map<String, ExtensionRealmCache.CacheRecord> pluginRealms =
                    (Map<String, ExtensionRealmCache.CacheRecord>) project.getContextValue(KEY_EXTENSIONS_REALMS);
            if (pluginRealms == null) {
                pluginRealms = new HashMap<>();
                project.setContextValue(KEY_EXTENSIONS_REALMS, pluginRealms);
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 09 16:35:21 GMT 2025
    - 46.4K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
        }
    
        /**
         * Returns context value of this project associated with the given key or null if this project has no such value.
         */
        public Object getContextValue(String key) {
            if (context == null) {
                return null;
            }
            return context.get(key);
        }
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
Back to Top