Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,269 for corerest (0.22 sec)

  1. tensorflow/c/BUILD

            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    tf_cc_test(
        name = "while_loop_test",
        size = "medium",
        srcs = ["while_loop_test.cc"],
        deps = [
            ":c_api",
            ":c_test_util",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

        }
    
        def "build does not leak credentials in cache URL"() {
            httpBuildCacheServer.withBasicAuth("correct-username", "correct-password")
            settingsFile << """
                buildCache {
                    remote.credentials {
                        username = "correct-username"
                        password = "correct-password"
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top