Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for moduleB (0.13 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    runtimeElements.exclude(group: "runtimeElements-group", module: "runtimeElements-module")
                    implementation.exclude(group: "implementation-group", module: "implementation-module")
                    runtimeOnly.exclude(group: "runtimeOnly-group", module: "runtimeOnly-module")
                }
    
                $dependencies
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

            and:
            parseContext.getMetaDataArtifact({ it.selector.module == 'parent' }, _, MAVEN_POM) >> asResource(parent)
            parseContext.getMetaDataArtifact({ it.selector.module == 'grandparent' }, _, MAVEN_POM) >> asResource(grandParent)
    
            when:
            parsePom()
    
            then:
            def dep = single(metadata.dependencies)
            dep.selector == moduleId('group-two', 'artifact-two', 'version-two')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass collects StableHLO functions referenced from `tf.XlaCallModule`'s
    `_entry_function` attribute into a module, serializes the module into MLIR
    bytecode, and embed the bytecode to `tf.XlaCallModule`'s `module` attribute.
    
    After serialization, this pass removes the `_entry_function` attribute from
    `tf.XlaCallModule`, and removes all the serialized stablehlo functions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

    </project>
    """
            and:
            parseContext.getMetaDataArtifact({ it.selector.module == 'parent' }, _, MAVEN_POM) >> asResource(parent)
            parseContext.getMetaDataArtifact({ it.selector.module == 'grandparent' }, _, MAVEN_POM) >> asResource(grandParent)
            parseContext.getMetaDataArtifact({ it.selector.module == 'imported' }, _, MAVEN_POM) >> asResource(imported)
    
            when:
            parsePom()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("module-2", pom.getValue("modules[1]"));
            assertEquals("module-1", pom.getValue("modules[2]"));
            assertEquals("module-3", pom.getValue("modules[3]"));
            assertEquals("module-4", pom.getValue("modules[4]"));
        }
    
        /**
         * Will throw an exception if it doesn't find parent(s) in build
         *
         * @throws Exception in case of issue
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // RUN:     -stablehlo-quantize-composite-functions=enable-per-channel-quantized-weight=false | FileCheck --check-prefix=CHECK-PER-TENSOR %s
    
    // Tests that basic dot_general is properly quantized.
    
    module attributes {tf_saved_model.semantics} {
      func.func private @quantize_dot_general_fn(%arg0: tensor<1x2xf32>) -> tensor<1x3xf32> attributes {tf._original_func_name = "main_0"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            httpServer.start()
            def dep1 = withColorVariants(remoteRepo.module("group", "thing1", "1.2")).publish().allowAll()
            def dep2 = withColorVariants(remoteRepo.module("group", "thing2", "1.2")).publish().allowAll()
            withColorVariants(remoteRepo.module("group", "thing3", "1.2")).dependsOn(dep1).dependsOn(dep2).publish().allowAll()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    
    	n := &Name{Name: id}
    	return n
    }
    
    // moduleName parses:
    //
    //	<module-name> ::= <module-subname>
    //	 	      ::= <module-name> <module-subname>
    //		      ::= <substitution>  # passed in by caller
    //	<module-subname> ::= W <source-name>
    //			 ::= W P <source-name>
    //
    // The module name is optional. If it is not present, this returns the parent.
    func (st *state) moduleName(parent AST) AST {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. src/go/build/build.go

    }
    
    var errNoModules = errors.New("not using modules")
    
    // importGo checks whether it can use the go command to find the directory for path.
    // If using the go command is not appropriate, importGo returns errNoModules.
    // Otherwise, importGo tries using the go command and reports whether that succeeded.
    // Using the go command lets build.Import and build.Context.Import find code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    for (String module : model.getModules()) {
                        if (module == null || module.isEmpty()) {
                            continue;
                        }
    
                        module = module.replace('\\', File.separatorChar).replace('/', File.separatorChar);
    
                        Path modulePath = modelProcessor.locateExistingPom(new File(basedir, module).toPath());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
Back to top