Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for webinar (0.12 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            targetDir.file("webinar-api/build/libs/webinar-api-1.0-SNAPSHOT.jar").exists()
            targetDir.file("webinar-impl/build/libs/webinar-impl-1.0-SNAPSHOT.jar").exists()
            targetDir.file("webinar-war/build/libs/webinar-war-1.0-SNAPSHOT.war").exists()
    
            new DefaultTestExecutionResult(targetDir.file("webinar-impl")).assertTestClassesExecuted('webinar.WebinarTest')
    
            when:
            run 'projects'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertContainsFile('WEB-INF/webinf1/file1.txt')
    
            war.assertFileContent('META-INF/MANIFEST.MF', 'Manifest-Version: 1.0\r\n\r\n')
        }
    
        def canCreateAWarArchiveWithWebXml() {
            given:
            def webXml = file('some.xml') << '<web/>'
            createDir('web-inf') {
                webinf1 {
                    file 'file1.txt'
                }
            }
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/jvm/war/src/main/java/org/gradle/api/tasks/bundling/War.java

         * @return The newly created {@code CopySpec}.
         * @since 3.5
         */
        public CopySpec webInf(Action<? super CopySpec> configureAction) {
            CopySpec webInf = getWebInf();
            configureAction.execute(webInf);
            return webInf;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. deps.xml

    	<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" />
    
    	<target name="install.jars">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${webinf.dir}/lib" />
    		<mkdir dir="${webinf.dir}/lib" />
    		<delete dir="${webinf.dir}/plugin" />
    		<mkdir dir="${webinf.dir}/plugin" />
    		<delete dir="${crawler.dir}/lib" />
    		<mkdir dir="${crawler.dir}/lib" />
    		<delete dir="${suggest.dir}/lib" />
    		<mkdir dir="${suggest.dir}/lib" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/websockets.md

    In Ihrer WebSocket-Route können Sie Nachrichten `await`en und Nachrichten senden.
    
    ```Python hl_lines="48-52"
    {!../../../docs_src/websockets/tutorial001.py!}
    ```
    
    Sie können Binär-, Text- und JSON-Daten empfangen und senden.
    
    ## Es ausprobieren
    
    Wenn Ihre Datei `main.py` heißt, führen Sie Ihre Anwendung so aus:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.bundling.War.webInf(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (War.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top