Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for tago (0.01 sec)

  1. okhttp-logging-interceptor/README.md

    To log to a custom location, pass a `Logger` instance to the constructor.
    ```java
    HttpLoggingInterceptor logging = new HttpLoggingInterceptor(new Logger() {
      @Override public void log(String message) {
        Timber.tag("OkHttp").d(message);
      }
    });
    ```
    
    **Warning**: The logs generated by this interceptor when using the `HEADERS` or `BODY` levels have
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_nl.properties

    errors.storage_access_error=Toegangsfout opslag: {0}
    errors.storage_no_upload_file=Geef een bestand op om te uploaden.
    errors.storage_directory_name_is_invalid=De mapnaam is ongeldig.
    errors.storage_tags_update_failure=Kan tags voor {0} niet bijwerken.
    
    success.update_crawler_params = Parameters bijgewerkt.
    success.delete_doc_from_index = Proces gestart om document uit index te verwijderen.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/DispatcherTest.kt

        return thread
      }
    
      private fun newRequest(url: String): Request = Request.Builder().url(url).build()
    
      private fun newRequest(
        url: String,
        tag: String,
      ): Request =
        Request
          .Builder()
          .url(url)
          .tag(tag)
          .build()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_message.properties

    errors.storage_access_error=Storage Access Error: {0}
    errors.storage_no_upload_file=Please specify a file to upload.
    errors.storage_directory_name_is_invalid=The directory name is invalid.
    errors.storage_tags_update_failure=Failed to update tags of {0}.
    
    success.update_crawler_params = Updated parameters.
    success.delete_doc_from_index = Started a process to delete documents from an index.
    success.crawling_info_delete_all = Deleted session data.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_en.properties

    errors.storage_access_error=Storage Access Error: {0}
    errors.storage_no_upload_file=Please specify a file to upload.
    errors.storage_directory_name_is_invalid=The directory name is invalid.
    errors.storage_tags_update_failure=Failed to update tags of {0}.
    
    success.update_crawler_params = Updated parameters.
    success.delete_doc_from_index = Started a process to delete documents from an index.
    success.crawling_info_delete_all = Deleted session data.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/internal/http/CancelTest.kt

    import okio.BufferedSink
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.ArgumentsSource
    
    @Timeout(30)
    @Tag("Slow")
    class CancelTest {
      @JvmField @RegisterExtension
      val platform = PlatformRule()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_pt_BR.properties

    labels.storage_bucket_name=Nome do bucket
    labels.storage_file=Arquivo
    labels.storage_folder_name=Nome da pasta
    labels.storage_button_download=Baixar
    labels.storage_button_tags=Tags
    labels.storage_title_tag=Tag:
    labels.storage_tag_key=Chave da tag
    labels.storage_tag_value=Valor da tag
    labels.login.newpassword=Você precisa atualizar sua senha
    labels.login.placeholder_new_password=Nova senha
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_pl.properties

    labels.storage_bucket_name=Nazwa bucketa
    labels.storage_file=Plik
    labels.storage_folder_name=Nazwa folderu
    labels.storage_button_download=Pobierz
    labels.storage_button_tags=Tagi
    labels.storage_title_tag=Tag:
    labels.storage_tag_key=Klucz tagu
    labels.storage_tag_value=Wartość tagu
    labels.login.newpassword=Musisz zaktualizować swoje hasło
    labels.login.placeholder_new_password=Nowe hasło
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/ClientAuthTest.kt

    import okhttp3.tls.internal.TlsUtil.newTrustManager
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junitpioneer.jupiter.RetryingTest
    
    @Tag("Slowish")
    class ClientAuthTest {
      @RegisterExtension
      val platform = PlatformRule()
    
      @RegisterExtension
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  10. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

    import okio.fakefilesystem.FakeFileSystem
    import org.junit.jupiter.api.Assertions.fail
    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Tag("Slowish")
    class DnsOverHttpsTest {
      @RegisterExtension
      val platform = PlatformRule()
    
      @StartStop
      private val server = MockWebServer()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 11.7K bytes
    - Viewed (0)
Back to top