Search Options

Results per page
Sort
Preferred Languages
Advance

Results 561 - 570 of 1,444 for inf2 (0.03 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

        }
    
        /**
         * Get local network interface
         *
         * @return local interface info
         */
        public NetworkInterfaceInfo getLocalInterface() {
            return localInterface;
        }
    
        /**
         * Get remote network interface
         *
         * @return remote interface info
         */
        public NetworkInterfaceInfo getRemoteInterface() {
            return remoteInterface;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/path-params-numeric-validations.md

    ## Import Path { #import-path }
    
    First, import `Path` from `fastapi`, and import `Annotated`:
    
    {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[1,3] *}
    
    /// info
    
    FastAPI added support for `Annotated` (and started recommending it) in version 0.95.0.
    
    If you have an older version, you would get errors when trying to use `Annotated`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/test/resources/logging.properties

    handlers = java.util.logging.ConsoleHandler
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 59 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

         */
        protected ThreadDumpUtil() {
            // noop
        }
    
        /**
         * Prints thread dump information to the logger at INFO level.
         */
        public static void printThreadDump() {
            processThreadDump(logger::info);
        }
    
        /**
         * Prints thread dump information to the logger at WARN level.
         */
        public static void printThreadDumpAsWarn() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. android-test/src/test/kotlin/okhttp/android/test/AndroidLoggingTest.kt

          client.newCall(request).execute()
        } catch (uhe: UnknownHostException) {
          // expected
        }
    
        val logs = ShadowLog.getLogsForTag(AndroidPlatform.Tag)
        assertThat(logs.map { it.type }).containsOnly(Log.INFO)
        assertThat(
          logs.map {
            it.msg.replace(
              "\\d+".toRegex(),
              "",
            )
          },
        ).containsExactly(
          "--> GET http://google.com/robots.txt",
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  6. docs/tr/docs/tutorial/request-forms.md

    # Form Verisi
    
    İstek gövdesinde JSON verisi yerine form alanlarını karşılamanız gerketiğinde `Form` sınıfını kullanabilirsiniz.
    
    /// info | Bilgi
    
    Formları kullanmak için öncelikle <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a> paketini indirmeniz gerekmektedir.
    
    Örneğin `pip install python-multipart`.
    
    ///
    
    ## `Form` Sınıfını Projenize Dahil Edin
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            if (bytesLimit > 0) {
                this.keyRotationBytesLimit = bytesLimit;
            }
            if (timeMillis > 0) {
                this.keyRotationTimeLimit = timeMillis;
            }
            log.info("Key rotation limits updated - bytes: {} MB, time: {} hours", bytesLimit / (1024 * 1024), timeMillis / (60 * 60 * 1000));
        }
    
        /**
         * Get key rotation metrics
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  8. docs/ru/docs/alternatives.md

    Для проверки данных он использует Marshmallow и создан теми же авторами.
    
    Это превосходный инструмент и я тоже часто пользовался им до **FastAPI**.
    
    /// info | Информация
    
    Webargs бы создан разработчиками Marshmallow.
    
    ///
    
    /// check | Идея для **FastAPI**
    
    Должна быть автоматическая проверка входных данных.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  9. docs/tr/docs/alternatives.md

    Veri doğrulama için arka planda Marshmallow kullanıyor, hatta aynı geliştiriciler tarafından oluşturuldu.
    
    Webargs da harika bir araç ve onu da geçmişte henüz **FastAPI** yokken çok kullandım.
    
    /// info | Bilgi
    
    Webargs aynı Marshmallow geliştirileri tarafından oluşturuldu.
    
    ///
    
    /// check | **FastAPI**'a nasıl ilham verdi?
    
    Gelen istek verisi için otomatik veri doğrulamaya sahip olmalı.
    
    ///
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/cookie-params.md

    Но помните, что когда вы импортируете `Query`, `Path`, `Cookie` и другое из `fastapi`, это фактически функции, которые возвращают специальные классы.
    
    ///
    
    /// info | Дополнительная информация
    
    Для объявления cookies, вам нужно использовать `Cookie`, иначе параметры будут интерпретированы как параметры запроса.
    
    ///
    
    ## Резюме
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top