Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for a_module (0.13 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    		//
    		// 	//go:wasmimport a_module add
    		// 	func importedAdd(a, b uint) uint
    		//
    		// will roughly become
    		//
    		// 	(import "a_module" "add" (func (param i32 i32) (result i32)))
    		abiConfig := AbiForBodylessFuncStackMap(f)
    		abiInfo := abiConfig.ABIAnalyzeFuncType(f.Type())
    		wi.Params = paramsToWasmFields(f, abiInfo, abiInfo.InParams())
    		wi.Results = resultsToWasmFields(f, abiInfo, abiInfo.OutParams())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

            def testModule = mavenRepo().module(orgGradleGroupId, 'test', '1.45')
            def fooModule = mavenRepo().module(orgGradleGroupId, 'foo', '2.0')
            fooModule.publish()
            def barModule = mavenRepo().module(orgGradleGroupId, 'bar', '3.0')
            barModule.publish()
            def bazModule = mavenRepo().module(orgGradleGroupId, 'baz', '6.0')
            bazModule.publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/EarModule.java

     * limitations under the License.
     */
    package org.gradle.plugins.ear.descriptor;
    
    import groovy.util.Node;
    
    /**
     * A module element in a deployment descriptor like application.xml.
     */
    public interface EarModule {
    
        /**
         * The connector element specifies the URI of an archive file, relative to the top level of the application package.
         */
        String getPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtModuleProviderBuilder.kt

    public class KtModuleProviderBuilder(
        public val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment,
    ) {
        private val mainModules: MutableList<KtModule> = mutableListOf()
    
        public fun <M : KtModule> addModule(module: M): M {
            mainModules.add(module)
            return module
        }
    
        public lateinit var platform: TargetPlatform
    
        public fun build(): KtStaticProjectStructureProvider {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 05 16:04:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

                    boolean testOnly = isTestConfiguration(configurations.get(artifact.getId()));
                    boolean asModule = isModule(testOnly, artifact.getFile());
                    if (componentIdentifier instanceof ProjectComponentIdentifier) {
                        visitor.visitProjectDependency(artifact, testOnly, asModule);
                    } else {
                        if (componentIdentifier instanceof ModuleComponentIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr.mlir

    // RUN: tf-mlir-translate -mlir-tf-str-attr-to-mlir %s -mlir-print-debuginfo -mlir-print-local-scope | FileCheck %s
    
    "\0A\0Amodule attributes {tf.versions = {producer = 888 : i32}} {\0A func.func @main(%arg0: tensor<?xi32>) -> tensor<?xi32> {\0A %0 = \22tf.Identity\22(%arg0) : (tensor<?xi32>) -> tensor<?xi32> loc(unknown)\0A return %0 : tensor<?xi32> loc(unknown)\0A } loc(unknown)\0A} loc(unknown)"
    
    // Test simple serialized computation consisting of a function named `main`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 13:27:00 UTC 2022
    - 998 bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

            and:
            repoA = mavenRepo("maven-repo")
            repoB = ivyRepo("ivy-repo")
    
            and:
            def abModule = publishPlugin(pluginAB, repoB).pluginModule
            (publishPlugin(pluginA, repoA).pluginModule as MavenModule)
                .dependsOn(abModule.group, abModule.module, abModule.version)
                .publishPom()
    
            and:
            use(repoB, repoA)
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

                    val stdlib = addModule(
                        buildKtLibraryModule {
                            addBinaryRoot(Paths.get("dist/common/kotlin-stdlib-common.jar"))
                            platform = CommonPlatforms.defaultCommonPlatform
                            libraryName = "stdlib"
                        }
                    )
                    val commonModule = addModule(
                        buildKtSourceModule {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/ExcludeRuleNotationConverterTest.groovy

            d.group == 'aGroup'
            !d.module
        }
    
        def "with module"() {
            when:
            ExcludeRule d = parser.parseNotation([module: 'aModule']);
            then:
            d != null;
            d instanceof DefaultExcludeRule
            d.module == 'aModule'
            !d.group
        }
    
        def "with group and module"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/KtAnalysisScopeProviderImpl.kt

        private val base: GlobalSearchScope,
        private val useSiteModule: KtModule,
        private val shadowed: GlobalSearchScope,
    ) : GlobalSearchScope() {
        override fun getProject(): Project? = base.project
        override fun isSearchInModuleContent(aModule: Module): Boolean = base.isSearchInModuleContent(aModule)
        override fun isSearchInLibraries(): Boolean = base.isSearchInLibraries
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top