- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 403 for lobj (0.02 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java
return Objects.equals(s1, s2); } /** * @deprecated Use {@link Objects#hashCode(Object)} */ @Deprecated public static int hash(Object obj) { return obj != null ? obj.hashCode() : 0; } public static int pluginHashCode(Plugin plugin) { int hash = 17; hash = hash * 31 + Objects.hashCode(plugin.getGroupId());
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 41.5K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Equivalence.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Jul 10 01:47:55 GMT 2025 - 14.5K bytes - Click Count (0) -
cmd/bucket-replication-handlers.go
ReplicationValidityCheck: true, // set this to validate the replication config }, } obj := path.Join(minioReservedBucket, globalLocalNodeNameHex, "deleteme") ui, err := c.PutObject(ctx, clnt.Bucket, obj, reader, int64(len(buf)), "", "", putOpts) if err != nil && !isReplicationPermissionCheck(ErrorRespToObjectError(err, bucket, obj)) {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Aug 15 12:04:40 GMT 2024 - 23.3K bytes - Click Count (0) -
internal/s3select/simdj/record.go
} // WriteCSV - encodes to CSV data. func (r *Record) WriteCSV(writer io.Writer, opts sql.WriteCSVOpts) error { csvRecord := make([]string, 0, 10) var tmp simdjson.Iter obj := r.object allElems: for { _, typ, err := obj.NextElement(&tmp) if err != nil { return err } var columnValue string switch typ {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 5.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 04:23:08 GMT 2025 - 7.1K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/DirectedGraphConnections.java
@Override public int size() { return adjacentNodeValues.size(); } @Override public boolean contains(@Nullable Object obj) { return adjacentNodeValues.containsKey(obj); } }; } } @Override public Set<N> predecessors() { return new AbstractSet<N>() { @OverrideCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Jan 18 02:54:30 GMT 2025 - 17.8K bytes - Click Count (0) -
guava/src/com/google/common/eventbus/Subscriber.java
public final int hashCode() { return (31 + method.hashCode()) * 31 + System.identityHashCode(target); } @Override public final boolean equals(@Nullable Object obj) { if (obj instanceof Subscriber) { Subscriber that = (Subscriber) obj; // Use == so that different equal instances will still receive events. // We only guard against the case that the same object is registered // multiple times
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 4.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringSearchModelInterpolator.java
this.problems = problems; } public Object run() { while (!interpolationTargets.isEmpty()) { Object obj = interpolationTargets.removeFirst(); traverseObjectWithParents(obj.getClass(), obj); } return null; } private String interpolate(String value) { return interpolator.interpolate(value);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 15.6K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java
public int size() { return IntMath.saturatedAdd(inEdgeMap.size(), outEdgeMap.size() - selfLoopCount); } @Override public boolean contains(@Nullable Object obj) { return inEdgeMap.containsKey(obj) || outEdgeMap.containsKey(obj); } }; } @Override public Set<E> inEdges() { return Collections.unmodifiableSet(inEdgeMap.keySet()); } @Override
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 4.5K bytes - Click Count (0)