Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,107 for corerest (0.14 sec)

  1. 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)
  2. 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)
  3. tensorflow/cc/tools/BUILD

            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework_internal",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:tensorflow",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/common/BUILD

    tf_cc_tests(
        name = "all_tests",
        size = "small",
        srcs = glob(["*_test.cc"]),
        deps = [
            ":common",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
            "//tensorflow/core/platform:types",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 18:35:29 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/BUILD

            ":calibration_statistics_collector_histogram",
            ":calibration_statistics_collector_min_max",
            ":calibration_statistics_proto_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    tf_kernel_library(
        name = "custom_aggregator_op",
        srcs = ["custom_aggregator_op.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/saved_model/BUILD

        tags = ["no_oss"],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tfrt:import_model",
            "//tensorflow/compiler/mlir/tfrt:saved_model",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:resource_loader",
            "@com_google_absl//absl/strings",
            "@com_google_googletest//:gtest_main",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 26 01:22:34 UTC 2023
    - 1011 bytes
    - Viewed (0)
  7. tests/migrate_test.go

    					t.Fatalf("column id primary key should be correct, name: %v, column: %#v", columnType.Name(),
    						columnType)
    				}
    			case "name":
    				dataType := DB.Dialector.DataTypeOf(stmt.Schema.LookUpField(columnType.Name()))
    				if !strings.Contains(strings.ToUpper(dataType), strings.ToUpper(columnType.DatabaseTypeName())) {
    					t.Fatalf("column name type should be correct, name: %v, length: %v, expects: %v, column: %#v",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  8. internal/config/errors.go

    		"Please set the correct default KMS key value or the correct root credentials for older MinIO versions.",
    		`Revert MINIO_KMS_KES_KEY_NAME or MINIO_ROOT_USER/MINIO_ROOT_PASSWORD (for older MinIO versions) to be able to decrypt the internal data again.`,
    	)
    
    	ErrInvalidCredentials = newErrFn(
    		"Invalid credentials",
    		"Please provide correct credentials",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/additional-responses.md

        The correct place is:
    
        * In the key `content`, that has as value another JSON object (`dict`) that contains:
            * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
                * A key `schema`, that has as the value the JSON Schema from the model, here's the correct place.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/jvm/tasks/JarTest.groovy

            jar.manifest != null
            jar.metaInf != null
        }
    
        def "correct jar manifest"() {
            when:
            jar.manifest = new DefaultManifest(null)
            jar.manifest {
                attributes(key: 'value')
            }
    
            then:
            jar.manifest.attributes.key == 'value'
        }
    
        def "correct jar manifest from null manifest"() {
            when:
            jar.manifest = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top