- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for millisec (0.06 sec)
-
src/main/resources/fess_label_en.properties
labels.excluded_doc_paths=Excluded Paths For Indexing labels.config_parameter=Config Parameters labels.max_access_count=Max Access Count labels.number_of_thread=The number of Thread labels.interval_time=Interval time labels.millisec=ms labels.permissions=Permissions labels.virtual_hosts=Virtual Hosts labels.virtual_host=Virtual Host labels.label_type=Label labels.file_crawling_button_create=Create
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.config_parameter=Konfigurationsparameter labels.max_access_count=Max. Anzahl an Zugriffen labels.number_of_thread=Thread-Anzahl labels.interval_time=Zeitintervall labels.millisec=ms labels.permissions=Berechtigungen labels.virtual_hosts=Virtuelle Hosts labels.virtual_host=Virtueller Host labels.label_type=Label labels.file_crawling_button_create=Erstellen
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 42.8K bytes - Viewed (0) -
src/main/resources/fess_label_ru.properties
labels.config_parameter=Конфигурация параметров labels.max_access_count=Максимальное количество соединений labels.number_of_thread=Количество цепочек labels.interval_time=Интервал времени labels.millisec=ms labels.permissions=Разрешения labels.label_type=Название labels.file_crawling_button_create=Создать labels.file_crawling_button_create_job=Создать новое задание labels.web_crawling_configuration=Web сканирование
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 45.6K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.excluded_doc_paths=Excluded Paths For Indexing labels.config_parameter=Config Parameters labels.max_access_count=Max Access Count labels.number_of_thread=The number of Thread labels.interval_time=Interval time labels.millisec=ms labels.permissions=Permissions labels.virtual_hosts=Virtual Hosts labels.virtual_host=Virtual Host labels.label_type=Label labels.file_crawling_button_create=Create
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.config_parameter = Paramètres de configuration labels.max_access_count = Nombre d'accès maximum labels.number_of_thread = Le nombre de thread labels.interval_time = Temps d'intervalle labels.millisec = ms labels.permissions = Autorisations labels.virtual_hosts = Hôtes virtuels labels.virtual_host = Hôte virtuel labels.label_type = Label labels.file_crawling_button_create = Créer
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.6K bytes - Viewed (0) -
src/main/resources/fess_label_ko.properties
labels.included_doc_paths = 검색 대상으로하는 경로 labels.excluded_doc_paths = 검색에서 제외 경로 labels.config_parameter = 구성 매개 변수 labels.max_access_count = 최대 접속 수 labels.number_of_thread = 스레드 수 labels.interval_time = 간격 labels.millisec = 밀리초 labels.permissions = 권한 labels.label_type = 레이블(Label) labels.file_crawling_button_create = 작성 labels.file_crawling_button_create_job = 새 작업 만들기 labels.web_crawling_configuration = 웹 크롤링
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 44K bytes - Viewed (0) -
src/main/resources/fess_label_ja.properties
labels.included_doc_paths=検索対象とするパス labels.excluded_doc_paths=検索対象から除外するパス labels.config_parameter=設定パラメーター labels.max_access_count=最大アクセス数 labels.number_of_thread=スレッド数 labels.interval_time=間隔 labels.millisec=ミリ秒 labels.permissions=パーミッション labels.virtual_hosts=仮想ホスト labels.virtual_host=仮想ホスト labels.label_type=ラベル labels.file_crawling_button_create=作成 labels.file_crawling_button_create_job=新しいジョブの作成
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_interval_time = "{labels.interval_time}"; /** The key of the message: ms */ public static final String LABELS_MILLISEC = "{labels.millisec}"; /** The key of the message: Permissions */ public static final String LABELS_PERMISSIONS = "{labels.permissions}"; /** The key of the message: Virtual Hosts */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 146.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
Long millis = params.get("delayMillisAfterProcessing"); if (millis != null) { delayMillisAfterProcessing = millis; } millis = params.get("delayMillisAtNoUrlInQueue"); if (millis != null) { delayMillisAtNoUrlInQueue = millis; } millis = params.get("delayMillisBeforeProcessing");
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ThreadUtil.java
public static void sleep(final long millis) { if (millis < 1L) { return; } try { Thread.sleep(millis); } catch (final InterruptedException e) { throw new InterruptedRuntimeException(e); } } public static void sleepQuietly(final long millis) { if (millis < 1L) { return; } try {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0)