Search Options

Results per page
Sort
Preferred Languages
Advance

Results 411 - 420 of 516 for decref (0.08 sec)

  1. docs/bucket/lifecycle/README.md

    1. ```
    2. 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/
    3. ```
    4.  
    5. > 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)
  2. android/guava-tests/test/com/google/common/io/CloserTest.java

    1. import java.io.IOException;
    2. import java.util.List;
    3. import junit.framework.TestCase;
    4. import org.checkerframework.checker.nullness.qual.Nullable;
    5.  
    6. /**
    7. * Tests for {@link Closer}.
    8. *
    9. * @author Colin Decker
    10. */
    11. public class CloserTest extends TestCase {
    12.  
    13. private TestSuppressor suppressor;
    14.  
    15. @Override
    16. protected void setUp() throws Exception {
    17. suppressor = new TestSuppressor();
    18. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

    1. protected static final String OIC_REDIRECT_URL = "oic.redirect.url";
    2.  
    3. protected static final String OIC_TOKEN_SERVER_URL = "oic.token.server.url";
    4.  
    5. protected static final String OIC_CLIENT_SECRET = "oic.client.secret";
    6.  
    7. protected static final String OIC_STATE = "OIC_STATE";
    8.  
    9. protected final HttpTransport httpTransport = new NetHttpTransport();
    10.  
    11. 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)
  4. cmd/api-errors.go

    1. Code: "InvalidArgument",
    2. Description: "The secret key was invalid for the specified algorithm.",
    3. HTTPStatusCode: http.StatusBadRequest,
    4. },
    5. ErrMissingSSECustomerKey: {
    6. Code: "InvalidArgument",
    7. Description: "Requests specifying Server Side Encryption with Customer provided keys must provide an appropriate secret key.",
    8. HTTPStatusCode: http.StatusBadRequest,
    9. },
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/io/Closer.java

    1. * </ul>
    2. *
    3. * <p>An exception that is suppressed is added to the exception that <i>will</i> be thrown using
    4. * {@code Throwable.addSuppressed(Throwable)}.
    5. *
    6. * @author Colin Decker
    7. * @since 14.0
    8. */
    9. // Coffee's for {@link Closer closers} only.
    10. @J2ktIncompatible
    11. @GwtIncompatible
    12. @ElementTypesAreNonnullByDefault
    13. 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)
  6. guava/src/com/google/common/util/concurrent/Striped.java

    1. if (existing != null) {
    2. return existing;
    3. }
    4. L created = supplier.get();
    5. ArrayReference<L> newRef = new ArrayReference<>(created, index, queue);
    6. while (!locks.compareAndSet(index, existingRef, newRef)) {
    7. // we raced, we need to re-read and try again
    8. existingRef = locks.get(index);
    9. 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)
  7. okhttp/src/test/java/okhttp3/DuplexTest.kt

    1. * test makes a single call with two duplex requests!
    2. */
    3. @Test
    4. fun duplexWithAuthChallenge() {
    5. enableProtocol(Protocol.HTTP_2)
    6. val credential = basic("jesse", "secret")
    7. client =
    8. client.newBuilder()
    9. .authenticator(RecordingOkAuthenticator(credential, null))
    10. .build()
    11. val body1 =
    12. 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)
  8. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    1. // wildcard host setting for the loadbalancer controller fulfilling this
    2. // Ingress, if left unspecified.
    3. // +optional
    4. repeated string hosts = 1;
    5.  
    6. // secretName is the name of the secret used to terminate TLS traffic on
    7. // port 443. Field is left optional to allow TLS routing based on SNI
    8. // 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)
  9. guava-tests/test/com/google/common/hash/HashingTest.java

    1. func.hashString(input, UTF_8).toString());
    2. }
    3. }
    4.  
    5. public void testNullPointers() {
    6. NullPointerTester tester =
    7. new NullPointerTester()
    8. .setDefault(byte[].class, "secret key".getBytes(UTF_8))
    9. .setDefault(HashCode.class, HashCode.fromLong(0));
    10. tester.testAllPublicStaticMethods(Hashing.class);
    11. }
    12.  
    13. 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)
  10. android/guava-tests/test/com/google/common/io/SourceSinkFactories.java

    1. import java.nio.CharBuffer;
    2. import java.util.Arrays;
    3. import java.util.logging.Logger;
    4. import org.checkerframework.checker.nullness.qual.Nullable;
    5.  
    6. /**
    7. * {@link SourceSinkFactory} implementations.
    8. *
    9. * @author Colin Decker
    10. */
    11. public class SourceSinkFactories {
    12.  
    13. private SourceSinkFactories() {}
    14.  
    15. public static CharSourceFactory stringCharSourceFactory() {
    16. return new StringSourceFactory();
    17. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top