Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for privasi (0.19 sec)

  1. guava-tests/test/com/google/common/collect/IteratorsTest.java

      }
    
      @GwtIncompatible // Only used by @GwtIncompatible code
      private abstract static class EmptyIteratorTester extends IteratorTester<Integer> {
        protected EmptyIteratorTester() {
          super(3, MODIFIABLE, Collections.<Integer>emptySet(), IteratorTester.KnownOrder.KNOWN_ORDER);
        }
      }
    
      @GwtIncompatible // Only used by @GwtIncompatible code
      private abstract static class SingletonIteratorTester extends IteratorTester<Integer> {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 55.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Preconditions.java

     * Preconditions}</a>.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Preconditions {
      private Preconditions() {}
    
      private interface Impossible {}
    
      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * @param expression a boolean expression
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Timeout
    
    @Timeout(5)
    @Tag("Slow")
    class Http2ConnectionTest {
      private val peer = MockHttp2Peer()
      private val taskFaker = TaskFaker()
    
      @AfterEach fun tearDown() {
        peer.close()
        taskFaker.close()
      }
    
      @Test fun serverPingsClientHttp2() {
        // Write the mocking script.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 75.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Preconditions.java

     * Preconditions}</a>.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Preconditions {
      private Preconditions() {}
    
      private interface Impossible {}
    
      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
       * @param expression a boolean expression
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Apr 11 11:52:14 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

    import com.google.common.io.BaseEncoding;
    
    public class SearchEngineClient implements Client {
    
        private static final Logger logger = LogManager.getLogger(SearchEngineClient.class);
    
        private static final String LOG_INDEX_PREFIX = "fess_log";
    
        private static final String USER_INDEX_PREFIX = "fess_user";
    
        private static final String CONFIG_INDEX_PREFIX = "fess_config";
    
        protected OpenSearchRunner runner;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  6. tensorflow/BUILD

            "//tensorflow:tf_framework_version_script.lds",
            "//tensorflow:tf_private_symbols.lds",
        ],
        framework_so = [],
        linkopts = select({
            "//tensorflow:macos": [
                "-Wl,-rename_section,__TEXT,text_env,__TEXT,__text",
                "-Wl,-unexported_symbols_list,$(location //tensorflow:tf_private_symbols.lds)",
            ],
            "//tensorflow:windows": [],
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  7. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                throw new LdapOperationException("Failed to create DirContext.", e);
            }
        }
    
        protected class DirContextHolder implements AutoCloseable {
            private final DirContext context;
    
            private int counter = 1;
    
            protected DirContextHolder(final DirContext context) {
                this.context = context;
            }
    
            public DirContext get() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/adminlte.min.js.map

    $('body')\n        .hasClass(ClassName.CONTROL_SIDEBAR_SLIDE)\n      if (shouldClose) {\n        // Close the control sidebar\n        this.collapse()\n      } else {\n        // Open the control sidebar\n        this.show()\n      }\n    }\n\n    // Private\n\n    _init() {\n      this._fixHeight()\n      this._fixScrollHeight()\n\n      $(window).resize(() => {\n        this._fixHeight()\n        this._fixScrollHeight()\n      })\n\n      $(window).scroll(() => {\n        if ($('body').hasClass(Cla...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  9. docs/changelogs/changelog_3x.md

        `HeldCertificate` is a TLS certificate and its private key. Generate a certificate with its
        builder then use it to sign another certificate or perform a TLS handshake. The
        `certificatePem()` method encodes the certificate in the familiar PEM format
        (`--- BEGIN CERTIFICATE ---`); the `privateKeyPkcs8Pem()` does likewise for the private key.
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      @get:JvmName("proxyAuthenticator")
      val proxyAuthenticator: Authenticator =
        builder.proxyAuthenticator
    
      @get:JvmName("socketFactory")
      val socketFactory: SocketFactory = builder.socketFactory
    
      private val sslSocketFactoryOrNull: SSLSocketFactory?
    
      @get:JvmName("sslSocketFactory")
      val sslSocketFactory: SSLSocketFactory
        get() = sslSocketFactoryOrNull ?: throw IllegalStateException("CLEARTEXT-only client")
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:21:33 GMT 2024
    - 52K bytes
    - Viewed (0)
Back to top