- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 148 for ftyp (0.02 sec)
-
src/main/resources/fess_label_es.properties
labels.file_auth_password=Contraseña labels.file_auth_parameters=Parámetros labels.file_auth_file_crawling_config=Configuración de rastreo de archivos labels.file_auth_scheme_samba=Samba labels.file_auth_scheme_ftp=FTP labels.pagination_page_guide_msg={0}/{1} ({2} elementos) labels.list_could_not_find_crud_table=No registrado. labels.scheduledjob_configuration=Programador de trabajos labels.scheduledjob_title_details=Trabajo
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
src/main/resources/fess_label_ko.properties
labels.file_auth_username=사용자명 labels.file_auth_password=비밀번호 labels.file_auth_parameters=파라미터 labels.file_auth_file_crawling_config=파일 크롤링 설정 labels.file_auth_scheme_samba=Samba labels.file_auth_scheme_ftp=FTP labels.pagination_page_guide_msg={0}/{1} ({2}건) labels.list_could_not_find_crud_table=등록되어 있지 않습니다. labels.scheduledjob_configuration=작업 스케줄러 labels.scheduledjob_title_details=작업 labels.scheduledjob_name=이름
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.1K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.file_auth_username=Username labels.file_auth_password=Password labels.file_auth_parameters=Parameters labels.file_auth_file_crawling_config=File Crawl Config labels.file_auth_scheme_samba=Samba labels.file_auth_scheme_ftp=FTP labels.pagination_page_guide_msg={0}/{1} ({2} items) labels.list_could_not_find_crud_table=Not registered. labels.scheduledjob_configuration=Job Scheduler labels.scheduledjob_title_details=Job labels.scheduledjob_name=Name
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
cmd/xl-storage.go
} var xl xlMetaV2 err = xl.LoadOrConvert(buf) if err != nil { return err } foundDirs := make(map[string]struct{}, len(xl.versions)) err = readDirFn(baseDir, func(name string, typ os.FileMode) error { if !typ.IsDir() { return nil } // See if directory has a UUID name. base := filepath.Base(name) _, err := uuid.Parse(base) if err == nil { foundDirs[base] = struct{}{} }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 13 11:33:47 UTC 2025 - 91.7K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
* * @since 20.0 */ public static final MediaType FLV_VIDEO = createConstant(VIDEO_TYPE, "x-flv"); /** * The 3GP multimedia container format. For more information, see <a * href="ftp://www.3gpp.org/tsg_sa/TSG_SA/TSGS_23/Docs/PDF/SP-040065.pdf#page=10">3GPP TS * 26.244</a>. * * @since 20.0 */ public static final MediaType THREE_GPP_VIDEO = createConstant(VIDEO_TYPE, "3gpp");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js
.lengthBadEnd,h=!1;break;case"max":this.errorMessage=e.lengthTooLongStart+j[1]+e.lengthBadEnd,h=!1;break;default:h=!0}return h},errorMessage:"",errorMessageKey:""}),a.formUtils.addValidator({name:"url",validatorFunction:function(b){var c=/^(https?|ftp):\/\/((((\w|-|\.|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 32.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* * ### Scheme * * Sometimes referred to as *protocol*, A URL's scheme describes what mechanism should be used to * retrieve the resource. Although URLs have many schemes (`mailto`, `file`, `ftp`), this class only * supports `http` and `https`. Use [java.net.URI][URI] for URLs with arbitrary schemes. * * ### Username and Password *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
src/main/resources/fess_label_ja.properties
labels.file_auth_username=ユーザー名 labels.file_auth_password=パスワード labels.file_auth_parameters=パラメーター labels.file_auth_file_crawling_config=ファイルクロール設定 labels.file_auth_scheme_samba=Samba labels.file_auth_scheme_ftp=FTP labels.pagination_page_guide_msg={0}/{1} ({2} 件) labels.list_could_not_find_crud_table=登録されていません。 labels.scheduledjob_configuration=ジョブスケジューラ labels.scheduledjob_title_details=ジョブ labels.scheduledjob_name=名前
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 46.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/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> {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0) -
src/main/webapp/js/admin/bootstrap.min.js
ryInterface,o.default.fn.modal.Constructor=Ct,o.default.fn.modal.noConflict=function(){return o.default.fn.modal=ut,Ct._jQueryInterface};var St=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],Nt=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,Dt=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;function At(t,e,n){if(0===t.length)return t;if(n&&"function"==typeof n)return...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 61.1K bytes - Viewed (0)