Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for someDir (0.27 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

                : checkoutDir.file("tracker/build/intermediates/javac/debug/classes/${pathToClass}.class")
    
            when:
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(checkoutDir, homeDir)
            def result = buildLocation(checkoutDir, agpVersion)
            def md5Before = compiledClassFile.md5Hash
    
            then:
            result.task(":tracker:compileDebugJavaWithJavac").outcome == SUCCESS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

        TestFile homeDir
    
        String kotlinVersion = KOTLIN_VERSIONS.latestStable
    
        def setup() {
            homeDir = temporaryFolder.createDir("test-kit-home")
        }
    
        def cleanup() {
            // The daemons started by test kit need to be killed, so no locked files are left behind.
            DaemonLogsAnalyzer.newAnalyzer(homeDir.file(ToolingApiGradleExecutor.TEST_KIT_DAEMON_DIR_NAME)).killAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

            where:
            settings                     | rootProjectName | display
            ""                           | "buildSrc"      | "default root project name"
            "rootProject.name='someLib'" | "someLib"       | "configured root project name"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcweb/vcweb.go

    		if err != nil {
    			return nil, err
    		}
    	}
    
    	homeDir := filepath.Join(workDir, "home")
    	if err := os.MkdirAll(homeDir, 0755); err != nil {
    		return nil, err
    	}
    
    	env := scriptEnviron(homeDir)
    
    	s := &Server{
    		env:       env,
    		logger:    logger,
    		scriptDir: scriptDir,
    		workDir:   workDir,
    		homeDir:   homeDir,
    		engine:    newScriptEngine(),
    		vcsHandlers: map[string]vcsHandler{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    val tar: FileTree = tarTree("someFile.tar")
    
    // tar tree attempts to guess the compression based on the file extension
    // however if you must specify the compression explicitly you can:
    val someTar: FileTree = tarTree(resources.gzip("someTar.ext"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarTest.groovy

        def "configures destinationDirectory for ear tasks"() {
            when:
            project.pluginManager.apply(JavaBasePlugin)
            project.version = '1.0'
    
            then:
            def someEar = project.tasks.create('someEar', Ear)
            someEar.destinationDirectory.get().asFile == project.libsDirectory.get().asFile
        }
    
        private static DeploymentDescriptor makeDeploymentDescriptor(Ear e) {
            e.deploymentDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 19:58:25 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/sources/process/ProviderCompatibleBaseExecSpecTestBase.groovy

            given:
            specUnderTest.environment("SOMEVAR", "someval")
    
            when:
            specUnderTest.setEnvironment(OTHERVAR: "otherval")
    
            then:
            specUnderTest.getEnvironment() == [OTHERVAR: "otherval"]
        }
    
        def "adding variables after setting environment is working"() {
            given:
            specUnderTest.setEnvironment(SOMEVAR: "someval")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

        def setup() {
            configurationCache = newConfigurationCacheFixture()
        }
    
        def "build on Java project with no source"() {
            given:
            settingsFile << """
                rootProject.name = 'somelib'
            """
            buildFile << """
                plugins { id 'java' }
            """
    
            when:
            configurationCacheRun "build"
    
            then:
            assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. pkg/test/util/file/file.go

    }
    
    // NormalizePath expands the homedir (~) and returns an error if the file doesn't exist.
    func NormalizePath(originalPath string) (string, error) {
    	if originalPath == "" {
    		return "", nil
    	}
    	// trim leading/trailing spaces from the path and if it uses the homedir ~, expand it.
    	var err error
    	out := strings.TrimSpace(originalPath)
    	out, err = homedir.Expand(out)
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/kotlin/gradle.properties

    // tag::user-properties[]
    signing.gnupg.executable=gpg
    signing.gnupg.useLegacyGpg=true
    signing.gnupg.homeDir=gnupg-home
    signing.gnupg.optionsFile=gnupg-home/gpg.conf
    signing.gnupg.keyName=24875D73
    signing.gnupg.passphrase=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
Back to top