Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 297 for def2 (0.15 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/BUILD

        ],
    )
    
    gentbl_cc_library(
        name = "mlrt_ops_inc_gen",
        tbl_outs = [
            (
                ["-gen-op-decls"],
                "mlrt_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "mlrt_ops.cpp.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "mlrt_ops.td",
        deps = [":mlrt_td_files"],
    )
    
    cc_library(
        name = "mlrt_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 17:04:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

        def "provides all modules and dependencies including unresolved"() {
            given:
            def dep1 = newDependency('dep1')
            def dep2 = newDependency('dep2')
    
            def root = newModule('root').addDependency(dep1).addDependency(dep2)
    
            def dep3 = newDependency('dep3')
            def dep4 = newUnresolvedDependency('dep4')
    
            dep2.selected.addDependency(dep3).addDependency(dep4)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/controller.cc

          if (env_->FileExists(file_path).ok()) {
            TF_CHECK_OK(api_def_map_->LoadFile(env_, file_path)) << file_path;
          } else {
            // API defs are currently used for only optional pieces.
          }
        }
      }
    
      // Doc strings (summary, description) typically come from the API def.
      api_def_map_->UpdateDocs();
    }
    
    void Controller::BuildModel() {
      // Build the internal data model for the requested ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/go/types/resolver_test.go

    	}
    
    	// resolve and type-check package AST
    	importer := new(resolveTestImporter)
    	conf := Config{Importer: importer}
    	uses := make(map[*ast.Ident]Object)
    	defs := make(map[*ast.Ident]Object)
    	_, err := conf.Check("testResolveIdents", fset, files, &Info{Defs: defs, Uses: uses})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// check that all packages were imported
    	for _, name := range pkgnames {
    		if !importer.imported[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

        def "closes services for home dir when another home dir is in use"() {
            def dir1 = new File("home-dir-1")
            def dir2 = new File("home-dir-2")
    
            given:
            def servicesHomeDir1 = homeDirServices.getServicesFor(dir1)
            def homeDir1Service = servicesHomeDir1.get(SomeHomeDirService)
    
            when:
            def services1 = homeDirServices.getServicesFor(dir2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            def target = Stub(GradleProjectIdentity)
            def buildState1 = Stub(BuildState)
            def buildState2 = Stub(BuildState)
            def buildState3 = Stub(BuildState)
            def projects3 = Stub(BuildProjectRegistry)
            def projectState = Stub(ProjectState)
            def model = new Object()
    
            given:
            _ * workerThreadRegistry.workerThread >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/clientinput/StdInStreamTest.groovy

        }
    
        def "can read multiple batches of input from client"() {
            def dispatch = Mock(OutputEventListener)
            def stream = new StdInStream(dispatch)
            def text1 = "some text"
            def bytes1 = text1.bytes
            def text2 = "more"
            def bytes2 = text2.bytes
    
            when:
            async {
                start {
                    def buffer = new byte[1024]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClasspathInfererTest.groovy

        def factory = new ClasspathInferer()
    
        def "determines action and tooling API classpath when loaded via a URLClassLoader"() {
            def cl = urlClassLoader(toolingApiClassPath + isolatedClasses(CustomAction, CustomModel))
            def actionClass = cl.loadClass(CustomAction.name)
    
            expect:
            def classpath = classpathFor(actionClass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            cleanup:
            cache.close()
        }
    
        def "will rebuild cache if cache.properties is missing and properties are not empty"() {
            given:
            def dir = createCacheDir()
            def initialized = false
            def init = { initialized = true } as Consumer
            def properties = [foo: 'bar']
            def cache = new DefaultPersistentDirectoryCache(dir, "test", properties,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

        def artifactNotationParser = Stub(NotationParser)
        def capabilityNotationParser = Stub(NotationParser)
        def fileCollectionFactory = TestFiles.fileCollectionFactory()
        def attributesFactory = AttributeTestUtil.attributesFactory()
        def displayName = Describables.of("<config>")
        def publications = new DefaultConfigurationPublications(displayName, artifacts, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top