- Sort Score
- Num 10 results
- Language All
Results 281 - 290 of 4,197 for objeto (0.04 seconds)
-
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
List<@Nullable Object> args = Lists.newArrayListWithCapacity(params.size()); for (Parameter param : params) { FreshValueGenerator generator = newFreshValueGenerator(); argGenerators.add(generator); args.add(generateDummyArg(param, generator)); } Object instance = createInstance(factory, args); List<Object> equalArgs = generateEqualFactoryArguments(factory, params, args);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 32.5K bytes - Click Count (0) -
internal/event/target/kafka_scram_client_contrib.go
} } // KafkaSHA256 is a function that returns a crypto/sha256 hasher and should be used // to create Client objects configured for SHA-256 hashing. var KafkaSHA256 scram.HashGeneratorFcn = sha256.New // KafkaSHA512 is a function that returns a crypto/sha512 hasher and should be used // to create Client objects configured for SHA-512 hashing. var KafkaSHA512 scram.HashGeneratorFcn = sha512.New
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 3.2K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CompactLinkedHashMap.java
final class CompactLinkedHashMap<K extends @Nullable Object, V extends @Nullable Object> extends CompactHashMap<K, V> { // TODO(lowasser): implement removeEldestEntry so this can be used as a drop-in replacement /** Creates an empty {@code CompactLinkedHashMap} instance. */ public static <K extends @Nullable Object, V extends @Nullable Object> CompactLinkedHashMap<K, V> create() {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Aug 06 14:59:07 GMT 2025 - 8.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/Task.java
public Task(String value) { this.value = Objects.requireNonNull(value, "value"); } public String getValue() { return value; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o instanceof Task task) { return Objects.equals(getClass(), task.getClass()) && Objects.equals(value, task.value); } else {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 1.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 5.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java
import java.util.List; import java.util.Objects; import java.util.stream.Collectors; import org.apache.maven.api.model.Model; import org.apache.maven.impl.resolver.MavenWorkspaceReader; import org.eclipse.aether.artifact.Artifact; import org.eclipse.aether.repository.WorkspaceReader; import org.eclipse.aether.repository.WorkspaceRepository; import static java.util.Objects.requireNonNull; /**
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Table.java
* @since 7.0 */ @DoNotMock("Use ImmutableTable, HashBasedTable, or another implementation") @GwtCompatible public interface Table< R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object> { // TODO(jlevy): Consider adding methods similar to ConcurrentMap methods. // Accessors /**Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/LogHelper.java
* Provides a method to log messages with a specified log type and additional objects. */ public interface LogHelper { /** * Logs a message with the specified log type and additional objects. * * @param key the type of log message * @param objs additional objects to include in the log message */ void log(LogType key, Object... objs);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 1.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
import java.io.File; import java.net.URI; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Collection; import java.util.Collections; import java.util.Map; import java.util.Objects; import java.util.Properties; import org.apache.maven.AbstractCoreMavenComponentTestCase; import org.apache.maven.RepositoryUtils; import org.apache.maven.api.Artifact; import org.apache.maven.api.MojoExecution;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 26 19:31:34 GMT 2025 - 19.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/Maps.java
public boolean equals(@Nullable Object object) { if (object instanceof ValueDifference) { ValueDifference<?> that = (ValueDifference<?>) object; return Objects.equals(this.left, that.leftValue()) && Objects.equals(this.right, that.rightValue()); } return false; } @Override public int hashCode() { return Objects.hash(left, right); }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Nov 17 22:50:48 GMT 2025 - 163.5K bytes - Click Count (0)