Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for platform1 (0.19 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/strcat.h"
    #include "tensorflow/core/platform/stringpiece.h"
    #include "tsl/platform/status.h"
    
    using tensorflow::StatusFromTF_Status;
    
    namespace stream_executor {
    using tensorflow::StringPiece;
    
    // TODO(penporn): Remove OwnedTFStatus.
    using OwnedTFStatus = tensorflow::TF_StatusPtr;
    
    namespace {
    absl::Status ValidateSPPlatform(const SP_Platform& platform) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    // the C API defined in stream_executor.h. A class "CSomething" represents a
    // "Something" that can be manipulated via calls in the C interface.
    class CPlatform : public Platform {
     public:
      explicit CPlatform(SP_Platform platform,
                         void (*destroy_platform)(SP_Platform*),
                         SP_PlatformFns platform_fns,
                         void (*destroy_platform_fns)(SP_PlatformFns*),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. .github/CODEOWNERS

    platforms/jvm/testing-junit-platform/       @gradle/bt-jvm @gradle/dv-testing-team
    platforms/jvm/testing-jvm/                  @gradle/bt-jvm @gradle/dv-testing-team
    platforms/jvm/testing-jvm-infrastructure/   @gradle/bt-jvm @gradle/dv-testing-team
    
    # Software platform
    platforms/software/                         @gradle/bt-jvm
    
    # Extensibility
    platforms/extensibility/        @gradle/bt-extensibility-maintainers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. .teamcity/subprojects.json

        "name": "persistent-cache",
        "path": "platforms/core-execution/persistent-cache",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "platform-base",
        "path": "platforms/software/platform-base",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "platform-jvm",
        "path": "platforms/jvm/platform-jvm",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

                  files=".*[/\\]platforms[/\\]jvm[/\\]war[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]tasks[/\\]bundling[/\\][^/\\]+"/>
    
        <suppress checks="JavadocPackage"
                  files=".*[/\\]platforms[/\\]jvm[/\\]language-jvm[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]plugins[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderBase.kt

    package org.jetbrains.kotlin.analysis.api.platform.packages
    
    import com.intellij.openapi.project.Project
    import com.intellij.psi.search.GlobalSearchScope
    import org.jetbrains.kotlin.analysis.api.platform.utils.forEachNonKotlinPsiElementFinder
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.platform.TargetPlatform
    import org.jetbrains.kotlin.platform.jvm.isJvm
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. settings.gradle.kts

                if (element is Platform) {
                    writer.platform(element)
                } else {
                    writer.element(element)
                }
            }
            println(endDiagram)
        }
    
        private fun NodeWriter.platform(platform: Platform) {
            println()
            node("subgraph ${platform.id}[\"${platform.name} platform\"]") {
                for (child in platform.children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * An **engine service** as defined by the Platform Interface (see the README).
     *
     * Engine services do not need to be implemented by a platform. Quite the contrary, they are implemented by the Analysis API engine and
     * intended to support platform implementations. They are defined in the Platform Interface, as opposed to the user-facing Analysis API,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/build.gradle.kts

        implementation(project(":ivy"))
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":maven"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":publish"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":dependency-management")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     *
     * #### Implementation Notes
     *
     * Analysis API platforms need to take care of publishing modification topics via the [analysisMessageBus]. In general, if your platform
     * works with static code and static module structure, you do not need to publish any events. However, keep in mind the contracts of the
     * various modification events. For example, if your platform can guarantee a static module structure but source code can still change,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top