Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,485 for corerest (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/properties/ScriptSourceAwareImplementationResolverTest.groovy

    import org.gradle.util.internal.ClosureBackedAction
    import org.gradle.util.internal.ConfigureUtil
    import spock.lang.Specification
    
    class ScriptSourceAwareImplementationResolverTest extends Specification {
    
        def "correct implementation for #type coerced to Action is tracked"() {
            expect:
            ScriptSourceAwareImplementationResolver.unwrapBean(implementation as Action) == implementation
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:27:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

          $resource,
          (TF_SubOp
            (CreateTFReadVariableOp $src_op, $value, $resource),
            $value
          ),
          (CreateConstBoolAttrFalse)
        )
      >;
    
    // This decomposition is only correct inside XLA as it ignores use_locking
    // attribute.
    def DecomposeResourceApplyGradientDescentOp :
      Pat<
        (TF_ResourceApplyGradientDescentOp:$src_op $resource, $alpha, $delta, BoolAttr:$_),
        (TF_AssignVariableOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_overlay.txt

    cmp $WORK/overlay/get_doesnt_add_dep_go_mod $WORK/want_go_mod
    
    # Content of overlaid go.sum is used.
    # The go.sum in the module directory has garbage values for its
    # hashes, but the overlaid file has the correct values. If
    # the correct go.sum is used with the overlay, 'go get .' should
    # not report a security error.
    cd $WORK/gopath/src/overlay-sum-used
    ! go get .
    stderr 'SECURITY ERROR'
    ! go mod verify
    stderr 'SECURITY ERROR'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/clobberdead_test.go

    package main
    import "fmt"
    func main() { fmt.Println("hello") }
    `
    
    func TestClobberDead(t *testing.T) {
    	// Test that clobberdead mode generates correct program.
    	runHello(t, "-clobberdead")
    }
    
    func TestClobberDeadReg(t *testing.T) {
    	// Test that clobberdeadreg mode generates correct program.
    	runHello(t, "-clobberdeadreg")
    }
    
    func runHello(t *testing.T, flag string) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/offline-mode.apt

      operations.
    
      Offline mode really means anticipating a lack of network connectivity, and as
      a result turning off certain services provided by m2 and providing a coherent
      way of predicting and reporting when network-related failures will take place.
      It means warning users that since the network is missing, certain features and
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/ir/fallback_opt.mlir

    }
    
    // CHECK-LABEL: func @convert
    func.func @convert() -> !corert.tensorhandle {
      %0 = corert.const_dense_tensor dense<0.0> : tensor<f32>
      // CHECK: tfrt_fallback_async.corert_tensorhandle_to_fallback_tensor
      %1 = tfrt_fallback_async.corert_tensorhandle_to_fallback_tensor %0 {_tfrt_cost = 1 : i64, device = "cpu"} : (!corert.tensorhandle) -> (!tfrt_fallback.tf_tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/BUILD

            "@llvm-project//mlir:Transforms",
        ],
    )
    
    tf_cc_test(
        name = "tf_saved_model_test",
        srcs = ["ir/tf_saved_model_test.cc"],
        deps = [
            ":tensorflow",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:test",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Parser",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpHeaderAuthSchemeTest.groovy

    import spock.lang.Specification
    
    class HttpHeaderAuthSchemeTest extends Specification {
        def "assure scheme name is correct"() {
            when:
            HttpHeaderAuthScheme headerAuthScheme = new HttpHeaderAuthScheme()
    
            then:
            headerAuthScheme.schemeName == "header"
        }
    
        def "test only correct credentials are supported"() {
            given:
            HttpHeaderAuthScheme headerAuthScheme = new HttpHeaderAuthScheme()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonAuthenticationIntegrationSpec.groovy

    import org.gradle.launcher.daemon.logging.DaemonMessages
    
    class DaemonAuthenticationIntegrationSpec extends DaemonIntegrationSpec {
        def "daemon discards build request that does not contain correct authentication token"() {
            when:
            buildSucceeds()
            def daemon = daemons.daemon
            daemon.assertIdle()
    
            then:
            daemon.assertRegistryNotWorldReadable()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/experimental/tests/BUILD

            "//tensorflow/cc/experimental/base/public:status",
            "//tensorflow/cc/saved_model/experimental/public:saved_model_api",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 795 bytes
    - Viewed (0)
Back to top