Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 773 for knative (0.18 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <!-- These packages are duplicated in ide-native from ide, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
                  files=".*[/\\]ide-native[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]plugins[/\\]ide[/\\]api[/\\][^/\\]+"/>
    
        <!-- These packages are duplicated in platform-native from language-native, don't require a package-info.java in each place -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppBinary.java

         */
        Attribute<Boolean> DEBUGGABLE_ATTRIBUTE = Attribute.of("org.gradle.native.debuggable", Boolean.class);
    
        /**
         * The dependency resolution attribute use to indicate whether a binary is optimized or not.
         *
         * @since 4.5
         */
        Attribute<Boolean> OPTIMIZED_ATTRIBUTE = Attribute.of("org.gradle.native.optimized", Boolean.class);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

     * implementation.
     */
    public abstract class KotlinForwardDeclarationProviderFactory : KotlinOptionalPlatformComponent {
        /**
         * Create a Kotlin/Native declaration provider for [ktModule].
         *
         * Generally, only Kotlin/Native KLIB libraries can declare forward declarations.
         * For other types of [KtModule]s the provider normally shouldn't be created.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/TestingNativeComponentReportIntegrationTest.groovy

    class TestingNativeComponentReportIntegrationTest extends AbstractNativeComponentReportIntegrationTest {
        @RequiresInstalledToolChain
        @ToBeFixedForConfigurationCache(because = ":components")
        def "shows details of native C++ executable with test suite"() {
            given:
            buildFile << """
    plugins {
        id 'cpp'
        id 'google-test-test-suite'
    }
    
    model {
        toolChains {
            ${toolChain.buildScriptConfig}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/websockets.md

    Und um über WebSockets mit Ihrem Backend zu kommunizieren, würden Sie wahrscheinlich die Werkzeuge Ihres Frontends verwenden.
    
    Oder Sie verfügen möglicherweise über eine native Mobile-Anwendung, die direkt in nativem Code mit Ihrem WebSocket-Backend kommuniziert.
    
    Oder Sie haben andere Möglichkeiten, mit dem WebSocket-Endpunkt zu kommunizieren.
    
    ---
    
    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. guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/IntsMethodsForWeb.java

    /** Web specializations for {@link Ints} methods. */
    public abstract class IntsMethodsForWeb {
    
      @JsMethod(name = "Math.min", namespace = JsPackage.GLOBAL)
      public static native int min(int... array);
    
      @JsMethod(name = "Math.max", namespace = JsPackage.GLOBAL)
      public static native int max(int... array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 26 00:50:12 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/build.gradle.kts

        api(project(":file-collections"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":platform-base"))
        api(project(":workers"))
    
        api(libs.jsr305)
        api(libs.inject)
        api(libs.nativePlatform)
        api(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tests/test_ws_router.py

            assert data == "Hello, router with prefix!"
    
    
    def test_native_prefix_router():
        client = TestClient(app)
        with client.websocket_connect("/native/") as websocket:
            data = websocket.receive_text()
            assert data == "Hello, router with native prefix!"
    
    
    def test_router2():
        client = TestClient(app)
        with client.websocket_connect("/router2") as websocket:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 19:08:14 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/slashpath.txt

    # .a files should use slash-separated paths even on windows
    # This is important for reproducing native builds with cross-compiled builds.
    go build -o x.a text/template
    ! grep 'GOROOT\\' x.a
    ! grep 'text\\template' x.a
    ! grep 'c:\\' x.a
    
    # executables should use slash-separated paths even on windows
    # This is important for reproducing native builds with cross-compiled builds.
    go build -o hello.exe hello.go
    ! grep 'GOROOT\\' hello.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 596 bytes
    - Viewed (0)
  10. tests/fuzz/README.md

    # Istio fuzzing
    
    Istio has a series of fuzzers that run continuously through OSS-fuzz.
    
    ## Native fuzzers
    
    While many jobs are still using the old [go-fuzz](https://github.com/dvyukov/go-fuzz) style fuzzers, using [Go 1.18 native fuzzing](https://go.dev/doc/fuzz/) is preferred.
    These should be written alongside standard test packages.
    Currently, these cannot be in `<pkg>_test` packages; instead move them to a file under `<pkg>`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 16:45:44 UTC 2022
    - 994 bytes
    - Viewed (0)
Back to top