- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 565 for hashtag (0.05 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java
private final Set<MethodMetaData> declaredMethods = new HashSet<MethodMetaData>(); private final List<String> innerClassNames = new ArrayList<String>(); private String outerClassName; private transient ClassMetaDataRepository<ClassMetaData> metaDataRepository; public final HashMap<String, String> constants = new HashMap<String, String>();
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.error; import java.util.HashMap; import java.util.Map; /** * Form class for handling error page data and search parameters. * This form captures the state of a search request when an error occurs,
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
private final HashMap<IssueLocality, LinkedHashSet<String>> pluginIssues; private final HashMap<IssueLocality, LinkedHashMap<String, LinkedHashSet<String>>> mojoIssues; private PluginValidationIssues() { this.pluginDeclarations = new LinkedHashSet<>(); this.pluginIssues = new HashMap<>(); this.mojoIssues = new HashMap<>(); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:32 GMT 2025 - 17.5K bytes - Click Count (0) -
src/main/java/jcifs/smb/StaticJAASConfiguration.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import java.util.HashMap; import java.util.Map; import javax.security.auth.login.AppConfigurationEntry; import javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag; import javax.security.auth.login.Configuration; /**
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Group.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.user.exentity; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.opensearch.user.bsentity.BsGroup; /** * @author FreeGen */ public class Group extends BsGroup { private static final long serialVersionUID = 1L;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 1.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
/** Map of session IDs to access result maps for storing crawling results. */ protected volatile Map<String, Map<String, AccessResultImpl<Long>>> sessionMap = new HashMap<>(); /** Map of session IDs to include URL patterns for filtering URLs. */ protected volatile Map<String, List<Pattern>> includeUrlPatternMap = new HashMap<>();Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 8.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java
private final Map<String, MavenProject> projects; private final Map<String, Integer> indices; public ProjectIndex(List<MavenProject> projects) { this.projects = new HashMap<>(projects.size() * 2); this.indices = new HashMap<>(projects.size() * 2); for (int i = 0; i < projects.size(); i++) { MavenProject project = projects.get(i); String key = BuilderCommon.getKey(project);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
/** Map of input file extensions to output extensions. */ private final Map<String, String> extensionMap = new HashMap<>(); /** Map of output extensions to their corresponding extractors. */ private final Map<String, Extractor> extractorMap = new HashMap<>(); /** * Constructs a new JodExtractor and initializes the extension and extractor mappings. */ public JodExtractor() {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 12:19:14 GMT 2025 - 10.4K bytes - Click Count (0) -
guava/src/com/google/common/hash/BloomFilterStrategies.java
} if (!bits.get(combinedHash % bitSize)) { return false; } } return true; } }, /** * This strategy uses all 128 bits of {@link Hashing#murmur3_128} when hashing. It looks different * from the implementation in MURMUR128_MITZ_32 because we're avoiding the multiplication in the * loop and doing a (much simpler) += hash2. We're also changing the index to a positive number byCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Jan 08 14:27:16 GMT 2025 - 10.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
// ---------------------------------------------------------------------- Map<String, String> userSpecifiedProperties = context.options != null ? new HashMap<>(context.options.userProperties().orElse(new HashMap<>())) : new HashMap<>(); createInterpolator().interpolate(userSpecifiedProperties, paths::get); // ----------------------------------------------------------------------Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0)