- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 910 for Subjects (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/batch-handlers.go
Bucket: ri.Bucket, Object: ri.Object, Objects: ri.Objects, ObjectsFailed: ri.ObjectsFailed, } case string(madmin.BatchJobExpire): m.Expired = &madmin.ExpirationInfo{ Bucket: ri.Bucket, Object: ri.Object, Objects: ri.Objects, DeleteMarkers: ri.DeleteMarkers, ObjectsFailed: ri.ObjectsFailed,
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 63.5K bytes - Click Count (1) -
internal/config/heal/help.go
config.HelpKV{ Key: Bitrot, Description: `perform bitrot scan on drives when checking objects during scanner` + defaultHelpPostfix(Bitrot), Optional: true, Type: "on|off", }, config.HelpKV{ Key: Sleep, Description: `maximum sleep duration between objects to slow down heal operation` + defaultHelpPostfix(Sleep), Optional: true, Type: "duration", },Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Sep 11 21:48:54 GMT 2023 - 1.8K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsWriter.java
@Override public void write(Writer output, Map<String, Object> options, PersistedToolchains toolchains) throws IOException { Objects.requireNonNull(output, "output cannot be null"); Objects.requireNonNull(toolchains, "toolchains cannot be null"); try (Writer out = output) { new MavenToolchainsStaxWriter().write(out, toolchains.getDelegate());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
import java.io.File; import java.net.MalformedURLException; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Random; import java.util.Set; import java.util.TreeMap; import java.util.stream.Collectors; import org.apache.maven.artifact.ArtifactUtils;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/lang/ObjectUtil.java
* * @author wyukawa */ public abstract class ObjectUtil { /** * Do not instantiate. */ protected ObjectUtil() { } /** * Returns true if the two objects are equal, or both are null. * * @param object1 the first object * @param object2 the second object * @return true if equal or both null, false otherwise */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3K bytes - Click Count (0) -
cmd/api-response.go
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 24 04:05:19 GMT 2025 - 35K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java
* @return the hash code */ @Override public int hashCode() { return Objects.hash(method, url, weight); } /** * Checks if this RequestData is equal to another object. * @param obj the object to compare with * @return true if the objects are equal, false otherwise */ @Override public boolean equals(Object obj) { if (this == obj)Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java
DefaultNode node = new DefaultNode(session, resolverNode, false); return Collections.unmodifiableMap(node.stream() .filter(Objects::nonNull) .map(Node::getDependency) .filter(Objects::nonNull) .collect(Collectors.toMap(d -> d.getGroupId() + ":" + d.getArtifactId(), d -> d))); } }; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 5.2K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/harness/PomTestWrapper.java
public PomTestWrapper(File pomFile, MavenProject mavenProject) { this.mavenProject = Objects.requireNonNull(mavenProject, "mavenProject cannot be null"); this.pomFile = pomFile; context = JXPathContext.newContext(mavenProject.getModel()); } public PomTestWrapper(MavenProject mavenProject) { this.mavenProject = Objects.requireNonNull(mavenProject, "mavenProject cannot be null");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriter.java
/** * Merges an array of SuggestItem objects by combining items with the same ID. * * <p>This method iterates through the provided array of SuggestItem objects and merges * items that have the same ID. The merged items are added to a new list, which is then * converted back to an array and returned.</p> * * @param items an array of SuggestItem objects to be mergedCreated: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 4.1K bytes - Click Count (0)