Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Wain (0.14 sec)

  1. docs/ru/docs/deployment/docker.md

    # (1)
    COPY ./main.py /code/
    
    # (2)
    CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]
    ```
    
    1. Скопируйте непосредственно файл `main.py` в директорию `/code` (не указывайте `./app`).
    
    2. При запуске Uvicorn укажите ему, что объект `app` нужно импортировать из файла `main` (вместо импортирования из `app.main`).
    
    Plain Text
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-08-10 15:53
    - 57.6K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

                Swagger UI (that provides the `/docs` interface) has better support for the
                OpenAPI-specific examples than the JSON Schema `examples`, that's the main
                use case for this.
    
                Read more about it in the
    Python
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-10-18 12:36
    - 62.4K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/adminlte.min.js.map

              = 'lte.layout'\n  const EVENT_KEY          = `.${DATA_KEY}`\n  const JQUERY_NO_CONFLICT = $.fn[NAME]\n\n  const Event = {\n    SIDEBAR: 'sidebar'\n  }\n\n  const Selector = {\n    HEADER         : '.main-header',\n    MAIN_SIDEBAR   : '.main-sidebar',\n    SIDEBAR        : '.main-sidebar .sidebar',\n    CONTENT        : '.content-wrapper',\n    BRAND          : '.brand-link',\n    CONTENT_HEADER : '.content-header',\n    WRAPPER        : '.wrapper',\n    CONTROL_SIDEBAR: '.control-sidebar',\n...
    Plain Text
    - Registered: 2023-12-04 08:04
    - Last Modified: 2020-02-12 07:55
    - 77K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertPathSuffixEquals("src/main/filter/it.properties", pom.getValue("build/filters[1]"));
    
            assertEquals(1, ((List<?>) pom.getValue("build/resources")).size());
            assertPathSuffixEquals("res/main", pom.getValue("build/resources[1]/directory"));
            assertPathSuffixEquals("main", pom.getValue("build/resources[1]/targetPath"));
    Java
    - Registered: 2023-12-03 03:35
    - Last Modified: 2023-06-24 08:51
    - 93.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        final CountDownLatch computeSignal = new CountDownLatch(1);
        // tells the main thread when computation is pending
        final CountDownLatch secondSignal = new CountDownLatch(1);
        // tells the main thread when the second get has started
        final CountDownLatch thirdSignal = new CountDownLatch(1);
        // tells the main thread when the third get has started
        final CountDownLatch fourthSignal = new CountDownLatch(1);
    Java
    - Registered: 2023-12-01 12:43
    - Last Modified: 2023-09-06 17:04
    - 86.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        final CountDownLatch computeSignal = new CountDownLatch(1);
        // tells the main thread when computation is pending
        final CountDownLatch secondSignal = new CountDownLatch(1);
        // tells the main thread when the second get has started
        final CountDownLatch thirdSignal = new CountDownLatch(1);
        // tells the main thread when the third get has started
        final CountDownLatch fourthSignal = new CountDownLatch(1);
    Java
    - Registered: 2023-12-01 12:43
    - Last Modified: 2023-09-06 17:04
    - 86.2K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            this.classWorld = classWorld;
            this.messageBuilderFactory = new JansiMessageBuilderFactory();
        }
    
        public static void main(String[] args) {
            int result = main(args, null);
    
            System.exit(result);
        }
    
        public static int main(String[] args, ClassWorld classWorld) {
            MavenCli cli = new MavenCli();
    
            MessageUtils.systemInstall();
    Java
    - Registered: 2023-12-03 03:35
    - Last Modified: 2023-11-27 23:13
    - 72.2K bytes
    - Viewed (0)
  8. .teamcity/.mvn/wrapper/maven-wrapper.jar

    MVNW_REPOURL = MVNW_REPOURL; public static final String MVN_VERSION = 3.6.3; public static final String MVN_PATH = org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip; static void <clinit>(); public void MavenWrapperMain(); public static void main(String[]) throws Exception; private static java.util.Map parseSystemPropertie(String[]); private static void addSystemProperties(java.io.File); private static java.io.File rootDir(java.io.File); private static java.io.File wrapperProperties(java.io.File);...
    Archive
    - Registered: 2023-11-29 11:36
    - Last Modified: 2020-02-26 01:48
    - 49.5K bytes
    - Viewed (0)
  9. gradle/wrapper/gradle-wrapper.jar

    public static final String GRADLE_USER_HOME_DETAILED_OPTION = gradle-user-home; public static final String GRADLE_QUIET_OPTION = q; public static final String GRADLE_QUIET_DETAILED_OPTION = quiet; public void GradleWrapperMain(); public static void main(String[]) throws Exception; private static void addSystemProperties(java.util.Properties, java.io.File, java.io.File); private static java.io.File rootDir(java.io.File); private static java.io.File wrapperProperties(java.io.File); private static java.io.File...
    Archive
    - Registered: 2023-09-27 11:36
    - Last Modified: 2023-07-10 16:05
    - 62.2K bytes
    - Viewed (0)
  10. configure.py

      config_info_line('nogcp', 'Disable GCP support.')
      config_info_line('nonccl', 'Disable NVIDIA NCCL support.')
    
    
    if __name__ == '__main__':
    Python
    - Registered: 2023-11-28 12:39
    - Last Modified: 2023-10-27 17:03
    - 51.8K bytes
    - Viewed (0)
Back to top