Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for dups (0.08 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							"values": map[string]interface{}{
    								"dups": []interface{}{1, 2, 2, 3, 1000, 2000, 3},
    							},
    						}}},
    				expectError{applyPatchOperation{
    					"add another list with duplicates",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"values": map[string]interface{}{
    							"dups":  []interface{}{1, 2, 2, 3, 1000, 2000},
    							"dups2": []interface{}{1, 2, 2, 3, 1000, 2000},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

        ],
        deps = [":get_compiler_ir_hdrs"],
    )
    
    # This target can be used by XLA device plugins to prevent circular dependencies, and provides access to all of the required headers for building a device library.
    cc_header_only_library(
        name = "xla_jit_headers_lib",
        visibility = ["//visibility:public"],
        deps = [
            ":xla_cpu_device",
            ":xla_cpu_jit",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/BUILD

        td_file = "transforms/legalize_tensorlist.td",
        deps = [":tensorflow_lite_patterns_td_files"],
    )
    
    cc_library(
        name = "validators",
        srcs = [
            "utils/validators.cc",
        ],
        hdrs = [
            "utils/validators.h",
        ],
        deps = [
            "@llvm-project//mlir:Dialect",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

        "tf.DumpTensor"(%4) {device = "", enabled = true, file_name = "quantized_tensor_data.pb", func_name = "conv_with_dump", log_dir_path = "/tmp/dumps/composite_conv2d_with_bias_and_relu6_fn_1", node_name = "Conv2D_1"} : (tensor<*xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            executedAndNotSkipped(":consumer1:resolve", ":consumer2:resolve")
    
            outputContains("Task-only execution plan: [PlannedTask('Task :producer:producer', deps=[]), PlannedTask('Task :consumer1:resolve', deps=[Task :producer:producer]), PlannedTask('Task :consumer2:resolve', deps=[Task :producer:producer])]")
    
            result.groupedOutput.transform("MakeGreen")
                .assertOutputContains("processing [producer.jar]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                    doLast {
                        def deps = configurations.conf.incoming.resolutionResult.allDependencies as List
                        assert deps.size() == 1
                        assert deps[0].requested.version == '1.3'
                        assert deps[0].selected.id.version == '1.5'
                        assert !deps[0].selected.selectionReason.forced
                        assert deps[0].selected.selectionReason.selectedByRule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    			// writeCoverMetaAct for more details.
    			run.Deps = append(run.Deps, writeCoverMetaAct)
    			writeCoverMetaAct.Deps = append(writeCoverMetaAct.Deps, build)
    		}
    		addTestVet(b, p, run, nil)
    		print := &work.Action{
    			Mode:       "test print",
    			Actor:      work.ActorFunc(builderPrintTest),
    			Deps:       []*work.Action{run},
    			Package:    p,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                configurations {
                    dependencyScope("deps")
                    resolvable("res") {
                        extendsFrom(deps)
                        attributes {
                            attribute(CUSTOM_ATTRIBUTE, "foo")
                        }
                    }
                }
    
                dependencies {
                    deps(project(":producer"))
                    constraints {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. tensorflow/BUILD

        srcs = ["tensorflow.default.bzl"],
        visibility = ["//visibility:public"],
        deps = [":tensorflow_bzl"],
    )
    
    # TODO(jakeharmon8): Remove these in favor of tsl:grpc
    # copybara:comment_begin(oss-only)
    cc_library(
        name = "grpc",
        visibility = ["//visibility:public"],
        deps = select({
            "//conditions:default": ["@com_github_grpc_grpc//:grpc"],
        }),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // It may change signature from release to release.
    func MainStart(deps testDeps, tests []InternalTest, benchmarks []InternalBenchmark, fuzzTargets []InternalFuzzTarget, examples []InternalExample) *M {
    	registerCover2(deps.InitRuntimeCoverage())
    	Init()
    	return &M{
    		deps:        deps,
    		tests:       tests,
    		benchmarks:  benchmarks,
    		fuzzTargets: fuzzTargets,
    		examples:    examples,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top