- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 516 for decref (0.08 sec)
-
docs/bucket/lifecycle/README.md
- ```
- mc admin tier add azure source AZURETIER --endpoint https://blob.core.windows.net --access-key AZURE_ACCOUNT_NAME --secret-key AZURE_ACCOUNT_KEY --bucket azurebucket --prefix testprefix1/
- ```
- > The admin user running this command needs the "admin:SetTier" and "admin:ListTier" permissions if not running as root.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 09 01:45:38 UTC 2024 - 9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CloserTest.java
- import java.io.IOException;
- import java.util.List;
- import junit.framework.TestCase;
- import org.checkerframework.checker.nullness.qual.Nullable;
- /**
- * Tests for {@link Closer}.
- *
- * @author Colin Decker
- */
- public class CloserTest extends TestCase {
- private TestSuppressor suppressor;
- @Override
- protected void setUp() throws Exception {
- suppressor = new TestSuppressor();
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 07 15:26:58 UTC 2024 - 11.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
- protected static final String OIC_REDIRECT_URL = "oic.redirect.url";
- protected static final String OIC_TOKEN_SERVER_URL = "oic.token.server.url";
- protected static final String OIC_CLIENT_SECRET = "oic.client.secret";
- protected static final String OIC_STATE = "OIC_STATE";
- protected final HttpTransport httpTransport = new NetHttpTransport();
- protected final JsonFactory jsonFactory = GsonFactory.getDefaultInstance();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.3K bytes - Viewed (0) -
cmd/api-errors.go
- Code: "InvalidArgument",
- Description: "The secret key was invalid for the specified algorithm.",
- HTTPStatusCode: http.StatusBadRequest,
- },
- ErrMissingSSECustomerKey: {
- Code: "InvalidArgument",
- Description: "Requests specifying Server Side Encryption with Customer provided keys must provide an appropriate secret key.",
- HTTPStatusCode: http.StatusBadRequest,
- },
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (1) -
android/guava/src/com/google/common/io/Closer.java
- * </ul>
- *
- * <p>An exception that is suppressed is added to the exception that <i>will</i> be thrown using
- * {@code Throwable.addSuppressed(Throwable)}.
- *
- * @author Colin Decker
- * @since 14.0
- */
- // Coffee's for {@link Closer closers} only.
- @J2ktIncompatible
- @GwtIncompatible
- @ElementTypesAreNonnullByDefault
- public final class Closer implements Closeable {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 07 15:26:58 UTC 2024 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
- if (existing != null) {
- return existing;
- }
- L created = supplier.get();
- ArrayReference<L> newRef = new ArrayReference<>(created, index, queue);
- while (!locks.compareAndSet(index, existingRef, newRef)) {
- // we raced, we need to re-read and try again
- existingRef = locks.get(index);
- existing = existingRef == null ? null : existingRef.get();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 26 12:58:35 UTC 2024 - 20.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/DuplexTest.kt
- * test makes a single call with two duplex requests!
- */
- @Test
- fun duplexWithAuthChallenge() {
- enableProtocol(Protocol.HTTP_2)
- val credential = basic("jesse", "secret")
- client =
- client.newBuilder()
- .authenticator(RecordingOkAuthenticator(credential, null))
- .build()
- val body1 =
- MockStreamHandler()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 23.9K bytes - Viewed (0) -
common-protos/k8s.io/api/networking/v1beta1/generated.proto
- // wildcard host setting for the loadbalancer controller fulfilling this
- // Ingress, if left unspecified.
- // +optional
- repeated string hosts = 1;
- // secretName is the name of the secret used to terminate TLS traffic on
- // port 443. Field is left optional to allow TLS routing based on SNI
- // hostname alone. If the SNI host in a listener conflicts with the "Host"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 14.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
- func.hashString(input, UTF_8).toString());
- }
- }
- public void testNullPointers() {
- NullPointerTester tester =
- new NullPointerTester()
- .setDefault(byte[].class, "secret key".getBytes(UTF_8))
- .setDefault(HashCode.class, HashCode.fromLong(0));
- tester.testAllPublicStaticMethods(Hashing.class);
- }
- public void testSeedlessHashFunctionEquals() throws Exception {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 09 17:40:09 UTC 2024 - 26.3K bytes - Viewed (2) -
android/guava-tests/test/com/google/common/io/SourceSinkFactories.java
- import java.nio.CharBuffer;
- import java.util.Arrays;
- import java.util.logging.Logger;
- import org.checkerframework.checker.nullness.qual.Nullable;
- /**
- * {@link SourceSinkFactory} implementations.
- *
- * @author Colin Decker
- */
- public class SourceSinkFactories {
- private SourceSinkFactories() {}
- public static CharSourceFactory stringCharSourceFactory() {
- return new StringSourceFactory();
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 12.6K bytes - Viewed (0)