Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 871 for createfing (0.19 sec)

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

                }
                def altFile = file("\${buildDir}/\${name}-\${version}-alt.jar")
                task createFile { doFirst { altFile.parentFile.mkdirs(); altFile.text = "test file" } }
                alt.artifact(file:altFile, builtBy: 'createFile')
    
            """
    
            when:
            run "publish"
    
            then:
            javaLibrary.parsedModuleMetadata.variant("apiElements") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

                }
            """
            def headerDir = file('src/main/headers')
            def src1 = file('src/main/cpp/app.cpp').createFile()
            def src2 = file('src/main/cpp/app-impl.cpp').createFile()
    
            when:
            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    
            then:
            project.projectIdentifier.projectPath == ':'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

        def "adds extension with convention for source layout and base name"() {
            given:
            def src = projectDir.file("src/main/cpp/main.cpp").createFile()
            def publicHeaders = projectDir.file("src/main/public").createDir()
    
            when:
            project.pluginManager.apply(CppLibraryPlugin)
    
            then:
            project.library instanceof CppLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

        def "adds extension with convention for source layout and module name"() {
            given:
            def src = projectDir.file("src/main/swift/main.swift").createFile()
    
            when:
            project.pluginManager.apply(SwiftLibraryPlugin)
            project.evaluate()
    
            then:
            project.library instanceof SwiftLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaIntegTest.groovy

                }
                def altFile = file("\${buildDir}/\${name}-\${version}-alt.jar")
                task createFile { doFirst { altFile.parentFile.mkdirs(); altFile.text = "test file" } }
                alt.artifact(file:altFile, builtBy: 'createFile')
    
            """
    
            when:
            run "publish"
    
            then:
            javaLibrary.parsedModuleMetadata.variant("apiElements") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

        }
    
        def usesContentsOfInstallationLibDirectoryAsImplementationClasspath() {
            def libA = tmpDir.createFile("lib/a.jar")
            def libB = tmpDir.createFile("lib/b.jar")
    
            expect:
            def dist = factory.getDistribution(tmpDir.testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            given:
            def rootDir = tmpDir.createDir("root")
            rootDir.file("buildSrc/build.gradle").createFile()
    
            def rootBuild = rootBuild(rootDir)
            registry.attachRootBuild(rootBuild)
    
            def parentDir = rootDir.file("parent").createDir()
            parentDir.file("buildSrc/build.gradle").createFile()
    
            def parentDefinition = build(parentDir, "parent")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    			serverURL, err := url.Parse(server.URL)
    			if err != nil {
    				t.Fatalf("error creating request: %s", err)
    			}
    			req, err := http.NewRequest("GET", server.URL, nil)
    			if err != nil {
    				t.Fatalf("error creating request: %s", err)
    			}
    
    			spdyTransport, err := NewRoundTripper(testCase.clientTLS)
    			if err != nil {
    				t.Fatalf("error creating SpdyRoundTripper: %v", err)
    			}
    
    			var proxierCalled bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  9. pkg/volume/testing/volume_host.go

    	host.exec = &testingexec.FakeExec{DisableScripts: true}
    	host.pluginMgr = &VolumePluginMgr{}
    	if err := host.pluginMgr.InitPlugins(plugins, nil /* prober */, host); err != nil {
    		t.Fatalf("Failed to init plugins while creating fake volume host: %v", err)
    	}
    	host.subpather = &subpath.FakeSubpath{}
    	host.informerFactory = informers.NewSharedInformerFactory(kubeClient, time.Minute)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

                getExtension() >> "ext1"
                getClassifier() >> "classified"
                getFile() >> testDir.createFile('artifact1')
            }
            MavenArtifact artifact2 = Stub() {
                getExtension() >> "ext1"
                getClassifier() >> "classified"
                getFile() >> testDir.createFile('artifact2')
            }
            def projectIdentity = makeProjectIdentity("group", "artifact", "version")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top