Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FTP (0.11 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

      @Test
      fun invalidScheme() {
        val requestBuilder = Request.Builder()
        assertFailsWith<IllegalArgumentException> {
          requestBuilder.url("ftp://hostname/path")
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Expected URL scheme 'http' or 'https' but was 'ftp'")
        }
      }
    
      @Test
      fun invalidPort() {
        val requestBuilder = Request.Builder()
        assertFailsWith<IllegalArgumentException> {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Samba */
        public static final String LABELS_file_auth_scheme_samba = "{labels.file_auth_scheme_samba}";
    
        /** The key of the message: FTP */
        public static final String LABELS_file_auth_scheme_ftp = "{labels.file_auth_scheme_ftp}";
    
        /** The key of the message: {0}/{1} ({2} items) */
        public static final String LABELS_pagination_page_guide_msg = "{labels.pagination_page_guide_msg}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top