Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getContextValue (0.07 sec)

  1. src/main/java/jcifs/SmbException.java

        }
    
        /**
         * Gets a specific context value
         *
         * @param key the context key
         * @return the context value or null
         */
        public Object getContextValue(String key) {
            return context.get(key);
        }
    
        /**
         * Gets the error timestamp
         *
         * @return the timestamp
         */
        public long getTimestamp() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. 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);
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  3. 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);
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
Back to top