Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 183 for moduleName (0.17 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftSingleFileLibWithSingleXCTestSuite.groovy

                            return delegate.sumTest.testCases + delegate.greeterTest.testCases + delegate.multiplyTest.testCases
                        }
                    }.withTestableImport(main.moduleName)
                ]
            }
        }
    
        SwiftSingleFileLibWithSingleXCTestSuite() {
            super("greeter")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                    for (String modulePath : modules) {
                        String moduleName = modulePath;
    
                        if (moduleName.endsWith("/") || moduleName.endsWith("\\")) {
                            moduleName = moduleName.substring(0, moduleName.length() - 1);
                        }
    
                        int lastSlash = moduleName.lastIndexOf('/');
    
                        if (lastSlash < 0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftXCTestRemoveDiscoveryBundle.groovy

     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    
    class IncrementalSwiftXCTestRemoveDiscoveryBundle extends IncrementalSwiftXCTestElement  {
        String moduleName = "App"
    
        final XCTestSourceFileElement fooTestSuite = new XCTestSourceFileElement("FooTestSuite") {
            List<XCTestCaseElement> testCases = [
                passingTestCase("testA"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoTransform.java

        }
    
        private static void addAutomaticModuleName(File originalJar, File moduleJar, String moduleName) {
            try (JarInputStream inputStream = new JarInputStream(new FileInputStream(originalJar))) {
                Manifest manifest = inputStream.getManifest();
                manifest.getMainAttributes().put(new Attributes.Name("Automatic-Module-Name"), moduleName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationIntegTest.groovy

                extraInfo[new QName('http://my.extra.info2', 'bar')] == 'barValue'
            }
        }
    
        def "can generate ivy.xml without publishing"() {
            given:
            def moduleName = module.module
            buildFile << """
                model {
                    tasks.generateDescriptorFileForIvyPublication {
                        destination = 'generated-ivy.xml'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    		c = tconv(typecheck.NodAddr(asanModulename), types.Types[types.TUNSAFEPTR])
    		c = tconv(c, types.NewPtr(defStringstruct))
    		c = ir.NewSelectorExpr(base.Pos, ir.ODOT, c, lname("data"))
    		setField("moduleName", c, i)
    		// Assign asanL[i].filename, asanL[i].line, asanL[i].column
    		// and assign globals[i].location = uintptr(unsafe.Pointer(&asanL[i]))
    		asanLi := ir.NewIndexExpr(base.Pos, asanlocation, ir.NewInt(base.Pos, int64(i)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisher.java

            IvyFieldValidator organisation = field(publication, "organisation", identity.getGroup())
                    .notEmpty()
                    .validInFileName();
            IvyFieldValidator moduleName = field(publication, "module name", identity.getName())
                    .notEmpty()
                    .validInFileName();
            IvyFieldValidator revision = field(publication, "revision", identity.getVersion())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyCppDepModuleMapApp.groovy

            }
    
            @Override
            final List<IncrementalElement.Transform> getIncrementalChanges() {
                [preserve(main)]
            }
    
            final String moduleName = "App"
    
            @Override
            final String getExpectedOutput() {
                main.expectedOutput
            }
    
            @Override
            final String getExpectedAlternateOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/GenerateIdeaModuleTest.groovy

        def setup() {
            childProject = TestUtil.createChildProject(project, "child", new File("."))
            grandChildProject = TestUtil.createChildProject(childProject, "grandChild", new File("."))
        }
    
        def "moduleName controls outputFile"() {
            given:
            applyPluginToProjects()
            assert childProject.idea.module.name == "child"
            def existingOutputFolder = childProject.ideaModule.outputFile.parentFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/NativeStandaloneSessionBuilderTest.kt

                            addSourceRoot(testDataPath("resolveAgainstNativeKLib/src"))
                            addRegularDependency(kLib)
                            platform = nativePlatform
                            moduleName = "source"
                        }
                    )
                }
            }
            val ktFile = session.modulesWithFiles.getValue(sourceModule).single() as KtFile
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top