Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for webinar (0.12 sec)

  1. 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)
  2. 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)
  3. tests/testdata/config/destination-rule-ssl.yaml

      namespace: testns
    spec:
      host: ssl1.webinf.info
      trafficPolicy:
        loadBalancer:
          simple: LEAST_CONN
        tls:
          mode: SIMPLE
    ---
    # This will not work: myCA not found, results in rejecting all clusters if the
    # service exists.
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: drprefix
      namespace: testns
    spec:
      host: "random.webinf.info"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 598 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/webApplication/customized/groovy/build.gradle

    }
    
    dependencies {
        providedCompile "javax.servlet:servlet-api:2.5"
    }
    
    war {
        webAppDirectory = file('src/main/webapp')
        from 'src/rootContent' // adds a file-set to the root of the archive
        webInf { from 'src/additionalWebInf' } // adds a file-set to the WEB-INF dir.
        webXml = file('src/someWeb.xml') // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  5. tests/testdata/config/destination-rule-fqdn.yaml

    # Fails if a service with the name exists: trusted_ca required !
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: fqdn
      namespace: testns
    spec:
      host: www.webinf.info
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 261 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.bundling.War.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>webInf</td>
                </tr>
                <tr>
                    <td>classpath</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/build.gradle.kts

    }
    
    dependencies {
        providedCompile("javax.servlet:servlet-api:2.5")
    }
    
    tasks.war {
        webAppDirectory = file("src/main/webapp")
        from("src/rootContent") // adds a file-set to the root of the archive
        webInf { from("src/additionalWebInf") } // adds a file-set to the WEB-INF dir.
        webXml = file("src/someWeb.xml") // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 543 bytes
    - Viewed (0)
  8. platforms/jvm/war/src/test/groovy/org/gradle/api/tasks/bundling/WarTest.groovy

        }
    
        def "test War"() {
            expect:
            war.archiveExtension.get() == War.WAR_EXTENSION
        }
    
        def "can configure WEB-INF CopySpec using an Action"() {
            given:
            war.webInf({ CopySpec spec ->
                spec.from temporaryFolder.createFile('file.txt')
            } as Action<CopySpec>)
    
            when:
            execute(war)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 18:51:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. 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