Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 374 for CPlatform (0.13 sec)

  1. src/cmd/go/internal/telemetrystats/version_unix.go

    	err := unix.Uname(&v)
    	if err != nil {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-uname-error", runtime.GOOS))
    		return
    	}
    	major, minor, ok := majorMinor(convert(v.Release[:]))
    	if runtime.GOOS == "aix" {
    		major, minor, ok = convert(v.Version[:]), convert(v.Release[:]), true
    	}
    	if !ok {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-bad-format", runtime.GOOS))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:44:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/build.gradle.kts

        api(project(":diagnostics"))
        api(project(":stdlib-java-extensions"))
        api(project(":language-native"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":process-services"))
        api(project(":test-suites-base"))
        api(project(":testing-base"))
        api(project(":testing-base-infrastructure"))
        api(project(":time"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/distributions-basics/build.gradle.kts

    }
    
    description = "The collector project for the 'basics' portion of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-core")))
    
        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":resources-sftp"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:05:59 UTC 2024
    - 945 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/unfreeze_constants.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h"
    #include "tensorflow/core/platform/env.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/status.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace quantization {
    
    // Unfreezes constants into variables and saves them to a checkpoint files under
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 11:07:03 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProvider
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProvider
    import org.jetbrains.kotlin.analysis.api.platform.declarations.createDeclarationProvider
    import org.jetbrains.kotlin.analysis.api.platform.packages.createPackageProvider
    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinCompositeDeclarationProvider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. build.gradle.kts

        testRuntimeOnly(rootProject.libs.junit.vintage.engine)
      }
    
      tasks.withType<Test> {
        useJUnitPlatform()
        jvmArgs(
          "-Dokhttp.platform=$platform",
        )
    
        if (platform == "loom") {
          jvmArgs(
            "-Djdk.tracePinnedThreads=short",
          )
        }
    
        val javaToolchains = project.extensions.getByType<JavaToolchainService>()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  7. platforms/ide/ide-native/build.gradle.kts

        api(project(":core-api"))
        api(project(":file-collections"))
        api(project(":ide"))
        api(project(":stdlib-java-extensions"))
        api(project(":language-native"))
        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":service-provider"))
    
        implementation(project(":model-core"))
        implementation(project(":testing-native"))
        implementation(project(":logging-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. docker-buildx.sh

    	-t "minio/minio:${release}" \
    	-t "quay.io/minio/minio:${release}" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release .
    
    docker buildx prune -f
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:${release}-cpuv1" \
    	-t "quay.io/minio/minio:${release}-cpuv1" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release.old_cpu .
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks_test.cc

    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tensorflow/core/platform/test.h"
    #include "tsl/lib/core/status_test_util.h"
    #include "tsl/platform/file_statistics.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinForwardDeclarationsPackageProviderFactory.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.platform.packages
    
    import com.intellij.openapi.project.Project
    import org.jetbrains.kotlin.analysis.api.platform.KotlinOptionalPlatformComponent
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top