- Sort Score
- Result 10 results
- Languages All
Results 741 - 750 of 1,369 for putA (0.02 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsBoostDocumentRule.java
} return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { sourceMap.put(field, value); } // =================================================================================== // Basic OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.7K bytes - Viewed (0) -
misc/ios/README
GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC=$(go env GOROOT)/misc/ios/clangwrap.sh go build Setting CC is not necessary if the toolchain is built with CC_FOR_TARGET set. To use the go tool to run individual programs and tests, put $GOROOT/bin into PATH to ensure the go_ios_$GOARCH_exec wrapper is found. For example, to run the archive/tar tests: export PATH=$GOROOT/bin:$PATH GOOS=ios GOARCH=amd64 CGO_ENABLED=1 go test archive/tar
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 29 21:49:26 UTC 2020 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
} /** * Adds an SMB authentication configuration to the holder. * @param auth The SMB authentication configuration to add. */ public void add(final SmbAuthentication auth) { authMap.put(auth.getPathPrefix(), auth); } /** * Retrieves an SMB authentication configuration that matches the given path. * @param path The path to match.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/FavoriteLog.java
} public void setVersionNo(final Long version) { asDocMeta().version(version); } public void addField(final String key, final Object value) { fields.put(key, value); } public String getLogMessage() { return getUrl(); } public LocalDateTime getRequestedAt() { return getCreatedAt(); } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/AnnotationUtil.java
for (final String name : beanDesc.getMethodNames()) { final Object v = getProperty(beanDesc, annotation, name); if (v != null) { map.put(name, v); } } return map; } /** * Returns the value of an annotation element. * * @param beanDesc the {@link BeanDesc} representing the annotation
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.6K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/merge/MavenToolchainMerger.java
Map<Object, ToolchainModel> merged = new LinkedHashMap<>(); for (ToolchainModel dominantModel : dominant) { Object key = getToolchainModelKey(dominantModel); merged.put(key, dominantModel); } for (ToolchainModel recessiveModel : recessive) { Object key = getToolchainModelKey(recessiveModel); ToolchainModel dominantModel = merged.get(key);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecyclePhase.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/ValidatingConfigurationListener.java
if (mojoDescriptor.getParameters() != null) { for (Parameter param : mojoDescriptor.getParameters()) { if (param.isRequired()) { missingParameters.put(param.getName(), param); } } } } public Collection<Parameter> getMissingParameters() { return missingParameters.values(); } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.7K bytes - Viewed (0) -
cmd/object-handlers-common.go
return false } // Validates the preconditions. Returns true if PUT operation should not proceed. // Preconditions supported are: // // x-minio-source-mtime // x-minio-source-etag func checkPreconditionsPUT(ctx context.Context, w http.ResponseWriter, r *http.Request, objInfo ObjectInfo, opts ObjectOptions) bool { // Return false for methods other than PUT. if r.Method != http.MethodPut && r.Method != http.MethodPost {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Jul 23 12:36:06 UTC 2025 - 15.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java
upgrades.put( DEFAULT_MAVEN_PLUGIN_GROUP_ID + ":maven-compiler-plugin", new PluginUpgradeInfo(DEFAULT_MAVEN_PLUGIN_GROUP_ID, "maven-compiler-plugin", "3.2")); upgrades.put( "org.codehaus.mojo:exec-maven-plugin", new PluginUpgradeInfo("org.codehaus.mojo", "exec-maven-plugin", "3.2.0")); upgrades.put(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 37K bytes - Viewed (0)