Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 775 for Knative (0.23 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableFileSpec.java

        public void setFile(File file) {
            this.file = file;
        }
    
        /**
         * The Tool Chain that produces the native executable.
         * @since 4.7
         */
        public NativeToolChain getToolChain() {
            return toolChain;
        }
    
        /**
         * Sets the Tool Chain that produces the native executable.
         * @since 4.7
         */
        public void setToolChain(NativeToolChain toolChain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

        String expected = """
    > Task :components
    
    ------------------------------------------------------------
    Root project
    ------------------------------------------------------------
    
    Native library 'hello'
    ----------------------
    
    Source sets
        C++ source 'hello:cpp'
            srcDir: src/hello/cpp
    
    Binaries
        Shared library 'hello:sharedLibrary'
            build using task: :helloSharedLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/GradleNativeIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.test.fixtures.file.LeaksFileHandles
    
    @LeaksFileHandles // Cannot delete `native-platform.dll`
    class GradleNativeIntegrationTest extends AbstractIntegrationSpec {
        def "caches native binaries in specified user home"() {
            given:
            executer.withNoExplicitNativeServicesDir()
            executer.requireOwnGradleUserHomeDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

                generateWithTemplate(destDir, "modules/${testProject.name}/src/src${sourceIdx}_${sourceLang}.${sourceLang}", "native-monolithic/src/src.${sourceLang}", fileArgs)
                generateWithTemplate(destDir, "modules/${testProject.name}/src/unused${sourceIdx}.${sourceLang}", "native-monolithic/src/unused.c", fileArgs)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeExecutableSpecTest.groovy

        def "has useful string representation"() {
            expect:
            executable.toString() == "native executable 'someExe'"
            executable.displayName == "native executable 'someExe'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. .idea/runConfigurations/Test__Partial_Linkage_Native___cache_everywhere.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="--stacktrace -Pkotlin.internal.native.test.cacheMode=STATIC_EVERYWHERE" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 29 15:41:06 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/build_defs.bzl

            deps = py_deps,
        )
    
        registered_op = "registered_" + name
        native.genrule(
            name = registered_op,
            srcs = [],
            outs = [name + ".inc.cc"],
            cmd = "$(location %s) --output=$@ --gen_register_op=true" % gen_op_lib_exec,
            tools = [":" + gen_op_lib_exec],
            tags = tags,
        )
    
        native.cc_library(
            name = name + "_cc",
            testonly = test,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinForwardDeclarationsPackageProviderFactory.kt

    import org.jetbrains.kotlin.analysis.api.platform.KotlinOptionalPlatformComponent
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * Package provider factory for the Kotlin/Native forward declarations symbol provider.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/build.gradle.kts

        api(libs.jsr305)
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        testImplementation(project(":native"))
        testImplementation(project(":base-services")) {
            because("TextUtil is needed")
        }
        testImplementation(testFixtures(project(":native")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 525 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/LibraryElements.java

         */
        String HEADERS_CPLUSPLUS = "headers-cplusplus";
    
        /**
         * Link archives for native modules
         */
        String LINK_ARCHIVE = "link-archive";
    
        /**
         * Objects for native modules
         */
        String OBJECTS = "objects";
    
        /**
         * Dynamic libraries for native modules
         */
        String DYNAMIC_LIB = "dynamic-lib";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 26 14:03:13 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top