Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for module_ (0.14 sec)

  1. tensorflow/compiler/mlir/lite/debug/debug_test.cc

              return registry;
            }()) {
        context_.loadAllAvailableDialects();
    
        mlir::OpBuilder builder(&context_);
        module_ = builder.create<mlir::ModuleOp>(builder.getUnknownLoc());
    
        builder.setInsertionPointToStart(module_->getBody());
        auto func = builder.create<mlir::func::FuncOp>(  //
            builder.getUnknownLoc(), "main", builder.getFunctionType({}, {}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config_test.cc

        }
        return main;
      }
    
     protected:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
    };
    
    TEST_F(LegalizationOpConfigTest, FailsWithExpectsLegalizationWithMlir) {
      TF_EXPECT_OK(CreateMlirModule());
      EXPECT_FALSE(IsOpLegalizedWithMlir(*module_->getOperation()));
    }
    
    TEST_F(LegalizationOpConfigTest, ExpectsFalseForNonMlirOps) {
      TF_EXPECT_OK(CreateMlirModule());
      TF_ASSERT_OK_AND_ASSIGN(FuncOp main, GetMain());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 03:31:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. module.xml

    	<target name="install.module">
    		<get dest="${target.dir}">
    			<url url="${repo.url}/${module.groupId}/${module.name.prefix}${module.name}/${module.version}/${module.name.prefix}${module.name}-${module.zip.version}.zip" />
    		</get>
    		<unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip">
    			<patternset>
    				<include name="**" />
    			</patternset>
    			<cutdirsmapper dirs="1" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

        /**
         * Returns the modules required by this module.
         */
        Set<Module> getRequiredModules();
    
        /**
         * Returns the transitive closure of all modules required by this module, including the module itself.
         */
        Set<Module> getAllRequiredModules();
    
        /**
         * Returns the implementation + runtime classpath of the transitive closure of all modules required by this module, including the module itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/modules.txt

    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    golang.org/x/mod/module
    golang.org/x/mod/semver
    golang.org/x/mod/sumdb
    golang.org/x/mod/sumdb/dirhash
    golang.org/x/mod/sumdb/note
    golang.org/x/mod/sumdb/tlog
    golang.org/x/mod/zip
    # golang.org/x/sync v0.7.0
    ## explicit; go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/vendor/modules.txt

    Michael Anthony Knyszek <******@****.***> 1717451199 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 872 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            // However, it appears that IDEA 2017 depends on this behaviour, and iterates over the included builds to get all modules
            allProjects.rootIdeaProject.name == 'buildA'
            allProjects.rootIdeaProject.modules.collect { it.name } == ['buildA']
    
            def moduleA = allProjects.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildActionCompatibilityMappingCrossVersionSpec.groovy

                }
            """
    
            when:
            def ideaProject = withConnection {
                action(new FetchIdeaProject()).run()
            }
    
            then:
            def moduleA = ideaProject.modules.find { it.name == 'a'}
            moduleA.dependencies[0].targetModuleName == 'b'
        }
    
        def "Applies gradle project identifier mapping"() {
            given:
            settingsFile << """
                include 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

        /**
         * Locates a module by name.
         *
         * @return the module. Does not return null.
         */
        Module getModule(String name) throws UnknownModuleException;
    
        /**
         * Tries to locate a module by name.
         *
         * @return the optional module, or {@literal null} if it cannot be found
         * @throws UnknownModuleException if the requested module is found but one of its dependencies is not
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/version.go

    	DefaultGoWorkVersion = "1.18"
    
    	// ExplicitIndirectVersion is the Go version at which a
    	// module's go.mod file is expected to list explicit requirements on every
    	// module that provides any package transitively imported by that module.
    	//
    	// Other indirect dependencies of such a module can be safely pruned out of
    	// the module graph; see https://golang.org/ref/mod#graph-pruning.
    	ExplicitIndirectVersion = "1.17"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top