Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 773 for knative (0.11 sec)

  1. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

            Please open IntelliJ-related issues on [the JetBrains Issue Tracker](https://youtrack.jetbrains.com/newIssue?project=IDEA)
            Please open Gradle Native-related issues on [the Gradle Native repository](https://github.com/gradle/gradle-native/issues)
    
            Provide a brief summary of the issue in the title above
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                lib - Components that depend on native library 'lib'
                +--- lib:sharedLibrary NOT BUILDABLE
                |    \\--- main:executable
                \\--- lib:staticLibrary NOT BUILDABLE
    
                main - Components that depend on native executable 'main'
                \\--- main:executable
    
                util - Components that depend on native library 'util'
                +--- util:sharedLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

      private static native String toPrecision(double value, int precision);
    
      @JsMethod
      static native boolean stringIsNullOrEmpty(@Nullable String string) /*-{
        return !string;
      }-*/;
    
      @JsMethod
      static native String nullToEmpty(@Nullable String string) /*-{
        return string || "";
      }-*/;
    
      @JsMethod
      static native String emptyToNull(@Nullable String string) /*-{
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 27 13:56:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeLibrarySpec.java

    import org.gradle.api.Incubating;
    import org.gradle.platform.base.LibrarySpec;
    
    /**
     * Definition of a native library component that is to be built by Gradle.
     */
    @Incubating
    public interface NativeLibrarySpec extends LibrarySpec, NativeComponentSpec, TargetedNativeComponent {
        /**
         * Converts this library to a native library requirement that uses the shared library variant. This is the default.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableBinarySpec.java

        /**
         * {@inheritDoc}
         */
        @Override
        NativeExecutableSpec getComponent();
    
        /**
         * Native Installation location for a native executable.
         */
        NativeInstallationSpec getInstallation();
    
        /**
         * Native Executable File.
         */
        NativeExecutableFileSpec getExecutable();
    
        /**
         * {@inheritDoc}
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-native/build.gradle.kts

        testImplementation(projectTests(":analysis:analysis-test-framework"))
        testImplementation(projectTests(":native:native.tests"))
        testImplementation(project(":native:kotlin-native-utils"))
    
        testImplementation(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
    }
    
    sourceSets {
        "main" { none() }
        "test" {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 08 20:43:11 UTC 2024
    - 969 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/initialization/InternalGradleFailuresIntegrationTest.groovy

            assertHasStartupFailure(failure, "Failed to create directory '${daemonDir}")
        }
    
        def "Error message due to unwritable native directory is not scary"() {
            given:
            executer.withStacktraceEnabled()
            def nativeDir = executer.gradleUserHomeDir.file("native")
            nativeDir.touch()
            executer.withNoExplicitNativeServicesDir()
    
            when:
            fails 'hello'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

        String C_PLUS_PLUS_API = "cplusplus-api";
    
        /**
         * The native link files of a library, packaged as static or shared library.
         *
         * @since 4.1
         */
        String NATIVE_LINK = "native-link";
    
        /**
         * The native runtime files of a library, packaged as a shared library.
         *
         * @since 4.1
         */
        String NATIVE_RUNTIME = "native-runtime";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. architecture/platforms.md

        style extensibility fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        extensibility --> core
        extensibility --> jvm
    
        subgraph native["native platform"]
        end
        style native fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        native --> core
        native --> software
    
        enterprise["enterprise module"]
        style enterprise stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    ```
    
    ## Platforms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. settings.gradle.kts

        subproject("unit-test-fixtures")
        subproject("test-kit")
    }
    
    // Native Platform
    platform("native") {
        uses(core)
        uses(software)
        subproject("distributions-native")
        subproject("platform-native")
        subproject("language-native")
        subproject("tooling-native")
        subproject("testing-native")
    }
    
    
    // Develocity Module
    module("enterprise") {
        subproject("enterprise")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top