Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 435 for host1 (0.02 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

            assertEquals("time.adjust.time.millis", FessEnv.TIME_ADJUST_TIME_MILLIS);
            assertEquals("mail.send.mock", FessEnv.MAIL_SEND_MOCK);
            assertEquals("mail.smtp.server.main.host.and.port", FessEnv.MAIL_SMTP_SERVER_MAIN_HOST_AND_PORT);
            assertEquals("mail.subject.test.prefix", FessEnv.MAIL_SUBJECT_TEST_PREFIX);
            assertEquals("mail.return.path", FessEnv.MAIL_RETURN_PATH);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                        return "cache";
                    case FessConfig.INDEX_FIELD_DIGEST:
                        return "digest";
                    case FessConfig.INDEX_FIELD_HOST:
                        return "host";
                    case FessConfig.INDEX_FIELD_SITE:
                        return "site";
                    case FessConfig.INDEX_FIELD_content_length:
                        return "content_length";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt

        )
        val session = FakeSSLSession(certificate)
        assertThat(verifier.verify("localhost", session)).isTrue()
        assertThat(verifier.verify("localhost.localdomain", session)).isTrue()
        assertThat(verifier.verify("local.host", session)).isFalse()
        assertThat(verifier.verify("127.0.0.1", session)).isTrue()
        assertThat(verifier.verify("127.0.0.2", session)).isFalse()
      }
    
      @Test fun wildcardsCannotMatchIpAddresses() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 40.4K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        // Adapt the request and response into our Request and Response domain model.
        val scheme = if (request.handshake != null) "https" else "http"
        val authority = request.headers["Host"] // Has host and port.
        val fancyRequest =
          Request
            .Builder()
            .url("$scheme://$authority/")
            .headers(request.headers)
            .build()
        val fancyResponse =
          Response
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  5. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    woodside
    worf.replit.dev
    work
    workers.dev
    workinggroup.aero
    workisboring.com
    works
    works.aero
    world
    worse-than.tv
    wow
    wp2.host
    wpdevcloud.com
    wpenginepowered.com
    wphostedmail.com
    wpmucdn.com
    wpmudev.host
    wpsquared.site
    writesthisblog.com
    wroc.pl
    wroclaw.pl
    ws
    wsa.gov.pl
    wskr.gov.pl
    wsse.gov.pl
    wtc
    wtf
    wuoz.gov.pl
    wv.us
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  6. docs/features/calls.md

    OkHttp may add headers that are absent from the original request, including `Content-Length`, `Transfer-Encoding`, `User-Agent`, `Host`, `Connection`, and `Content-Type`. It will add an `Accept-Encoding` header for transparent response compression unless the header is already present. If you’ve got cookies, OkHttp will add a `Cookie` header with them.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/SocketChannelTest.kt

        OkHttpClientTestRule().apply {
          recordFrames = true
          // recordSslDebug = true
        }
    
      // https://tools.ietf.org/html/rfc6066#page-6 specifies a FQDN is required.
      val hostname = "local.host"
      private val handshakeCertificates =
        run {
          // Generate a self-signed cert for the server to serve and the client to trust.
          val heldCertificate =
            HeldCertificate
              .Builder()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbSession.java

         *
         * @param dc the domain controller address
         * @return the NTLM challenge bytes
         * @throws SmbException if an SMB error occurs
         * @throws UnknownHostException if the host cannot be resolved
         */
        public static byte[] getChallenge(final UniAddress dc) throws SmbException, UnknownHostException {
            return getChallenge(dc, 0);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SmbEnumerationUtilTest.java

                }
            }
        }
    
        @Nested
        @DisplayName("Master browser enumeration tests")
        class MasterBrowserEnumerationTests {
    
            @Test
            @DisplayName("doEnum with empty host throws SmbUnsupportedOperationException when master browser not found")
            void doEnum_withEmptyHost_throwsUnsupportedWithoutNetwork() throws Exception {
                // Arrange: mock parent + locator so no real network is used
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

        @Test
        @DisplayName("Should add and retrieve context information")
        void testContextInformation() {
            // Given
            Map<String, Object> initialContext = new HashMap<>();
            initialContext.put("host", "server.example.com");
            initialContext.put("port", 445);
    
            exception = new SmbOperationException(SmbOperationException.ErrorCode.ACCESS_DENIED, "Permission denied", null,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
Back to top