Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for defs (0.04 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

            "//learning/brain/mlir/bridge:__pkg__",
            "//tensorflow/compiler/mlir/quantization/stablehlo:__pkg__",
            "//tensorflow/compiler/mlir/tfrt/transforms/ifrt:__pkg__",
        ],
        deps = [
            ":device_type_proto_cc",
            "//tensorflow/compiler/jit:flags_headers",
            "//tensorflow/compiler/jit:shape_inference",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    			"dev-baz3": pluginapi.Device{
    				ID: "baz3",
    			},
    		},
    	}
    
    	resp = devs.Filter(map[string]sets.Set[string]{})
    	expected = `{}`
    	expectResourceDeviceInstances(t, resp, expected)
    
    	cond = map[string]sets.Set[string]{
    		"foo": sets.New[string]("dev-foo1", "dev-foo2"),
    		"bar": sets.New[string]("dev-bar1"),
    	}
    	resp = devs.Filter(cond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            def actualRoot = findLines(configDetails, 'root').first()
            def expectedRoot = "[${root.type}][id:${root.id}][mv:${root.moduleVersionId}][reason:${root.reason}]".toString()
            assert actualRoot.startsWith(expectedRoot)
    
            def actualComponents = findLines(configDetails, 'component')
            def expectedComponents = graph.nodes.collect { baseNode ->
                def variants = baseNode.variants
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                }
    
                dependencies {
                    deps "androidx.appcompat:appcompat:1.3.0"
                    deps "androidx.fragment:fragment-testing:1.4.1"
    
                    constraints {
                        deps project(":lifecycle:lifecycle-livedata-core")
                        deps project(":lifecycle:lifecycle-viewmodel")
                        deps project(":lifecycle:lifecycle-viewmodel-savedstate")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

            javaLibrary.parsedPom.scope("runtime") {
                assert dependencies.size() == 1
                def deps = dependencies.values()
                assert deps[0].artifactId == 'b' // because of substitution
                assert deps[0].groupId == 'com.second'
                assert deps[0].version == '1.2'
            }
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/testing/fuzz.go

    // returns immediately.
    func runFuzzing(deps testDeps, fuzzTests []InternalFuzzTarget) (ok bool) {
    	if len(fuzzTests) == 0 || *matchFuzz == "" {
    		return true
    	}
    	m := newMatcher(deps.MatchString, *matchFuzz, "-test.fuzz", *skip)
    	tctx := newTestContext(1, m)
    	tctx.isFuzzing = true
    	fctx := &fuzzContext{
    		deps: deps,
    	}
    	root := common{w: os.Stdout}
    	if *isFuzzWorker {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/initorder.go

    		for obj, d := range check.objMap {
    			// only print objects that may appear in the dependency graph
    			if obj, _ := obj.(dependency); obj != nil {
    				if len(d.deps) > 0 {
    					fmt.Printf("\t%s depends on\n", obj.Name())
    					for dep := range d.deps {
    						fmt.Printf("\t\t%s\n", dep.Name())
    					}
    				} else {
    					fmt.Printf("\t%s has no dependencies\n", obj.Name())
    				}
    			}
    		}
    		fmt.Println()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/go/types/initorder.go

    		for obj, d := range check.objMap {
    			// only print objects that may appear in the dependency graph
    			if obj, _ := obj.(dependency); obj != nil {
    				if len(d.deps) > 0 {
    					fmt.Printf("\t%s depends on\n", obj.Name())
    					for dep := range d.deps {
    						fmt.Printf("\t\t%s\n", dep.Name())
    					}
    				} else {
    					fmt.Printf("\t%s has no dependencies\n", obj.Name())
    				}
    			}
    		}
    		fmt.Println()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tests/BUILD

        visibility = ["//visibility:public"],
    )
    
    py_strict_binary(
        name = "make_test_graphs",
        testonly = 1,
        srcs = ["make_test_graphs.py"],
        python_version = "PY3",
        srcs_version = "PY3",
        deps = [
            "//tensorflow/core:protos_all_py",
            "//tensorflow/python/client:session",
            "//tensorflow/python/framework:constant_op",
            "//tensorflow/python/framework:dtypes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/build.go

    		a1 := b.AutoAction(ModeInstall, depMode, p)
    		if load.InstallTargetDir(p) == load.ToTool {
    			a.Deps = append(a.Deps, a1.Deps...)
    			a1.Deps = append(a1.Deps, a)
    			tools = append(tools, a1)
    			continue
    		}
    		a.Deps = append(a.Deps, a1)
    	}
    	if len(tools) > 0 {
    		a = &Action{
    			Mode: "go install (tools)",
    			Deps: tools,
    		}
    	}
    
    	if cfg.BuildBuildmode == "shared" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top