Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,101 for corerest (0.14 sec)

  1. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    [trimpath] env GOROOT=$TESTGO_GOROOT
    
    [short] stop
    
    # With GOROOT still set, 'go build' and 'go test -c'
    # should cause runtime.GOROOT() to report either the correct GOROOT
    # (without -trimpath) or no GOROOT at all (with -trimpath).
    
    go build -o example.exe .
    go build -trimpath -o example-trimpath.exe .
    go test -c -o example.test.exe .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsers.java

                } catch (IllegalDependencyNotation e) {
                    throw new InvalidUserDataException(
                            "Invalid format: '" + notation + "'. The correct notation is a 3-part group:name:version notation, "
                                    + "e.g: 'org.gradle:gradle-core:1.0'");
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/metrics/BUILD

            "testdata/strided_slice.mlir",
        ],
        deps = [
            ":error_collector",
            ":error_collector_inst",
            ":types_util",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/core:test",
            "//tensorflow/core/platform:errors",
            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/lite/python/metrics:converter_error_data_proto_cc",
            "@com_google_absl//absl/status:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

            when:
            strictParser.parseNotation(notation)
    
            then:
            InvalidUserDataException ex = thrown()
            ex.message == "Invalid format for capability: '$notation'. The correct notation is a 3-part group:name:version notation, e.g: 'org.group:capability:1.0'"
    
            where:
            notation << [
                    "foo:bar",
                    "foo:bar:",
                    "foo::1.0",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectModelAccess.java

         *
         * @param referrerProject The project that is going to use the Gradle instance
         * @param gradle The Gradle instance that the project has direct access to.
         * @return A Gradle instance that implements correct cross-project model access.
         */
        GradleInternal gradleInstanceForProject(ProjectInternal referrerProject, GradleInternal gradle);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      let summary = "Convert fallback tensor to corert tensorhandle";
    
      let description = [{
        Convert the fallback tensor to corert tensorhandle.
    
        args: a list of fallback tensors.
        device: the name of the tensorflow device that is associated with the
          input fallback tensors.
    
        results: the converted corert tensorhandles.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            }
        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def 'projectsLoaded listeners are attributed to the correct registrant'() {
            given:
            def addGradleListeners = { String source ->
                """
                    gradle.projectsLoaded({
                        println "gradle.projectsLoaded(Action) from $source"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

            val generatedTopLevelClassifiers = declarationGenerators
                .asSequence()
                .flatMap {
                    // FIXME this function should be called only once during plugin's lifetime, so this usage is not really correct (2)
                    it.getTopLevelClassIds()
                }
                .filter { it.packageFqName == packageFqName }
                .map { it.shortClassName }
    
            return generatedTopLevelClassifiers.toSet()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/BUILD

            "//tensorflow/compiler/mlir/tensorflow:attribute_utils",
            "//tensorflow/compiler/tf2xla:xla_op_registry",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core/lib/monitoring:cell_reader",
            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/core/tpu:tpu_defs",
            "@com_google_absl//absl/status",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/BUILD

        srcs = ["mlir_pass_instrumentation_test.cc"],
        deps = [
            ":mlir_pass_instrumentation",
            "//tensorflow/compiler/mlir/tf2xla/api/v1:compile_mlir_util_no_tf_dialect_passes",
            "//tensorflow/core:test",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    cc_library(
        name = "legalize_tf_mlir",
        srcs = ["legalize_tf_mlir.cc"],
        hdrs = ["legalize_tf_mlir.h"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top