- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 861 for objOpts (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava/src/com/google/common/base/MoreObjects.java
* lazy evaluation of the fallback instance, using {@link Optional#or(Supplier) * first.or(supplier)}. * * <p><b>Java 9 users:</b> use {@link Objects#requireNonNullElse} instead. For lazy evaluation of * the fallback, use {@link Objects#requireNonNullElseGet Objects.requireNonNullElseGet(first, () * -> second)}}. * * @return {@code first} if it is non-null; otherwise {@code second} if it is non-nullCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 05 17:38:41 GMT 2026 - 16.7K bytes - Click Count (0) -
cmd/batch-expire.go
"gopkg.in/yaml.v3" ) // expire: # Expire objects that match a condition // apiVersion: v1 // bucket: mybucket # Bucket where this batch job will expire matching objects from // prefix: myprefix # (Optional) Prefix under which this job will expire objects matching the rules below. // rules: // - type: object # regular objects with zero or more older versions
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Apr 22 11:16:32 GMT 2025 - 23K bytes - Click Count (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
void notManaged() } abstract class DefaultNestedType implements NestedType { ... } class Example { private final NestedType nested Example(ObjectFactory objects) { this.nested = objects.newInstance(DefaultNestedType.class) } @Nested NestedType getNestedProperty() { return nested; } } ``` You should prefer to use managed types when possible.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 10K bytes - Click Count (0) -
internal/s3select/jstream/README.md
-kv | output inner key value pairs as newly formed objects -v | output depth and offset details for each value -h | display help dialog ## Benchmarks Obligatory benchmarks performed on files with arrays of objects, where the decoded objects are to be extracted. Two file sizes are used -- regular (1.6mb, 1000 objects) and large (128mb, 100000 objects) input size | lib | MB/s | Allocated --- | --- | --- | ---
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Sep 23 19:35:41 GMT 2024 - 3.2K bytes - Click Count (0) -
cmd/bucket-listobjects-handlers.go
} // ListObjectsV2MHandler - GET Bucket (List Objects) Version 2 with metadata. // -------------------------- // This implementation of the GET operation returns some or all (up to 1000) // of the objects in a bucket. You can use the request parameters as selection // criteria to return a subset of the objects in a bucket. // // NOTE: It is recommended that this API to be used for application development.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 11.6K 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 Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 1.8K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/CacheBuilderSpec.java
} CacheBuilderSpec that = (CacheBuilderSpec) obj; return Objects.equals(initialCapacity, that.initialCapacity) && Objects.equals(maximumSize, that.maximumSize) && Objects.equals(maximumWeight, that.maximumWeight) && Objects.equals(concurrencyLevel, that.concurrencyLevel) && Objects.equals(keyStrength, that.keyStrength) && Objects.equals(valueStrength, that.valueStrength)Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 18.2K bytes - Click Count (0) -
guava/src/com/google/common/cache/CacheBuilderSpec.java
} CacheBuilderSpec that = (CacheBuilderSpec) obj; return Objects.equals(initialCapacity, that.initialCapacity) && Objects.equals(maximumSize, that.maximumSize) && Objects.equals(maximumWeight, that.maximumWeight) && Objects.equals(concurrencyLevel, that.concurrencyLevel) && Objects.equals(keyStrength, that.keyStrength) && Objects.equals(valueStrength, that.valueStrength)Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 18.2K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java
dummy += Objects.hashCode(S0, S1, S2, S3); } return dummy; } @Benchmark int hashString_5(int reps) { int dummy = 0; for (int i = 0; i < reps; i++) { dummy += Objects.hashCode(S0, S1, S2, S3, S4); } return dummy; } @Benchmark int hashMixed_5(int reps) { int dummy = 0; for (int i = 0; i < reps; i++) { dummy += Objects.hashCode(I2, S1, D1, S2, I0);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 2.2K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsWriter.java
public class DefaultSettingsWriter implements SettingsWriter { @Override public void write(File output, Map<String, Object> options, Settings settings) throws IOException { Objects.requireNonNull(output, "output cannot be null"); Objects.requireNonNull(settings, "settings cannot be null"); output.getParentFile().mkdirs(); write(Files.newOutputStream(output.toPath()), options, settings); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.8K bytes - Click Count (0)