- Sort Score
- Result 10 results
- Languages All
Results 811 - 820 of 1,513 for kValues (0.05 sec)
-
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
/** * The input futures. After {@link #init}, this field is read only by {@link #afterDone()} (to * propagate cancellation) and {@link #toString()}. To access the futures' <i>values</i>, {@code * AggregateFuture} attaches listeners that hold references to one or more inputs. And in the case * of {@link CombinedFuture}, the user-supplied callback usually has its own references to inputs. */ /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 16.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/IoTestCase.java
return File.createTempFile("test", null, getTempDir()); } /** Returns a byte array of length size that has values 0 .. size - 1. */ static byte[] newPreFilledByteArray(int size) { return newPreFilledByteArray(0, size); } /** Returns a byte array of length size that has values offset .. offset + size - 1. */ static byte[] newPreFilledByteArray(int offset, int size) { byte[] array = new byte[size];
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 31 12:36:13 UTC 2024 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/SparseImmutableTable.java
} @Override V getValue(int index) { int rowIndex = cellRowIndices[index]; ImmutableMap<C, V> row = rowMap.values().asList().get(rowIndex); int columnIndex = cellColumnInRowIndices[index]; return row.values().asList().get(columnIndex); } @Override @J2ktIncompatible // serialization @GwtIncompatible // serialization Object writeReplace() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 5.6K bytes - Viewed (0) -
internal/jwt/parser.go
} return nil } // NewMapClaims - Initializes a new map claims func NewMapClaims() *MapClaims { return &MapClaims{MapClaims: jwtgo.MapClaims{}} } // Set Adds new arbitrary claim keys and values. func (c *MapClaims) Set(key string, val interface{}) { if c == nil { return } c.MapClaims[key] = val } // Delete deletes a key named key. func (c *MapClaims) Delete(key string) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 17 16:45:46 UTC 2024 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/UsingToStringOrdering.java
*/ package com.google.common.collect; import com.google.common.annotations.GwtCompatible; import java.io.Serializable; /** An ordering that uses the natural order of the string representation of the values. */ @GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault final class UsingToStringOrdering extends Ordering<Object> implements Serializable {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Jun 20 14:22:42 UTC 2021 - 1.4K bytes - Viewed (0) -
src/packaging/rpm/init.d/fess
if [ -f /etc/rc.status ]; then . /etc/rc.status rc_reset fi # # Source function library. # if [ -f /etc/rc.d/init.d/functions ]; then . /etc/rc.d/init.d/functions fi # Sets the default values for fess variables used in this script PROC_NAME=org.codelibs.fess.FessBoot FESS_USER="${packaging.fess.user}" FESS_GROUP="${packaging.fess.group}" FESS_HOME="${packaging.fess.home.dir}" PID_DIR="${packaging.fess.pid.dir}"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 3.7K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/Problem.java
*/ int getColumnNumber(); /** * Gets the location of the problem. The location is a user-friendly combination of the values from * {@link #getSource()}, {@link #getLineNumber()} and {@link #getColumnNumber()}. The exact syntax of the returned * value is undefined. * * @return The location of the problem, never {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
misc/ios/README
id and a provisioned bundle id to use. They're specified with the environment variables GOIOS_DEV_ID, GOIOS_TEAM_ID and GOIOS_APP_ID. The detect.go program in this directory will attempt to auto-detect suitable values. Run it as go run detect.go which will output something similar to export GOIOS_DEV_ID="iPhone Developer: ******@****.*** (XXXXXXXX)" export GOIOS_APP_ID=YYYYYYYY.some.bundle.id export GOIOS_TEAM_ID=ZZZZZZZZ
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Dec 29 21:49:26 UTC 2020 - 2.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
*/ @Nonnull Optional<Boolean> help(); /** * Returns a new instance of {@link Options} with values interpolated using the given properties. * * @param properties a collection of property maps to use for interpolation * @return a new {@link Options} instance with interpolated values */ @Nonnull Options interpolate(@Nonnull Collection<Map<String, String>> properties); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 22 14:53:58 UTC 2024 - 6.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/HttpUrl.kt
* | `http://host/a/b%20c/d"` | `["a", "b c", "d"]` | */ @get:JvmName("pathSegments") val pathSegments: List<String>, /** * Alternating, decoded query names and values, or null for no query. Names may be empty or * non-empty, but never null. Values are null if the name has no corresponding '=' separator, or * empty, or non-empty. */ private val queryNamesAndValues: List<String?>?, /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 63.5K bytes - Viewed (0)