Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for workingDir (0.08 seconds)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt

        resolve(child)
    
    
    fun ExecOperations.execAndGetStdout(workingDir: File, ignoreExitValue: Boolean, vararg args: String): String {
        val out = ByteArrayOutputStream()
        exec {
            isIgnoreExitValue = ignoreExitValue
            commandLine(*args)
            standardOutput = out
            this.workingDir = workingDir
        }
        return out.toString().trim()
    }
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon May 19 11:33:57 GMT 2025
    - 965 bytes
    - Click Count (0)
  2. build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt

        @Suppress("UnstableApiUsage")
        private
        fun git(vararg args: String): Provider<String> {
            val projectDir = parameters.rootProjectDir.asFile.get()
            val execOutput = providers.exec {
                workingDir = projectDir
                isIgnoreExitValue = true
                commandLine = listOf("git", *args)
                if (OperatingSystem.current().isWindows) {
                    commandLine = listOf("cmd.exe", "/d", "/c") + commandLine
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/configurations/LightweightChecks.kt

                            """.trimIndent()
                        workingDir = ".teamcity"
                    }
                    script {
                        name = "CLEAN_M2"
                        executionMode = BuildStep.ExecutionMode.ALWAYS
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 23 03:29:32 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  4. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

                            gradleWrapper {
                                name = "GRADLE_RUNNER${if (repeatIndex == 0) "" else "_2"}"
                                tasks = ""
                                workingDir = os.perfTestWorkingDir
    
                                val typeExtraParameters = if (type.extraParameters.isEmpty()) "" else " ${type.extraParameters}"
    
                                gradleParams =
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 29 01:37:22 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

            steps {
                killProcessStep(buildTypeThis, KILL_ALL_GRADLE_PROCESSES, os)
                substDirOnWindows(os)
                gradleWrapper {
                    name = "GRADLE_RUNNER"
                    workingDir = os.perfTestWorkingDir
                    gradleParams =
                        (
                            performanceTestCommandLine(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 14:08:32 GMT 2026
    - 6K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                buildJvm = buildJvm,
                extraSteps = {
                    script {
                        name = "CALCULATE_MD5_VERSION_FOR_DOGFOODING_DISTRIBUTION"
                        workingDir = "%teamcity.build.checkoutDir%/dogfood-first-for-hash"
                        scriptContent =
                            """
                            set -x
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalBwcGitPlugin.java

                    logger.lifecycle("Performing checkout of {}...", refspec);
                    LoggedExec.exec(execOperations, spec -> {
                        spec.workingDir(checkoutDir);
                        spec.commandLine("git", "checkout", effectiveRefSpec);
                    });
    
                    String checkoutHash = GitInfo.gitInfo(checkoutDir).getRevision();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 9.9K bytes
    - Click Count (0)
  8. src/cmd/asm/internal/lex/tokenizer.go

    		scanner.ScanInts |
    		scanner.ScanStrings |
    		scanner.ScanComments
    	s.Position.Filename = name
    	s.IsIdentRune = isIdentRune
    	return &Tokenizer{
    		s:    &s,
    		base: src.NewFileBase(name, objabi.AbsFile(objabi.WorkingDir(), name, *flags.TrimPath)),
    		line: 1,
    		file: file,
    	}
    }
    
    // We want center dot (·) and division slash (∕) to work as identifier characters.
    func isIdentRune(ch rune, i int) bool {
    	if unicode.IsLetter(ch) {
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Aug 04 20:35:21 GMT 2022
    - 3K bytes
    - Click Count (0)
  9. src/cmd/asm/internal/lex/input.go

    	}
    	pos := src.MakePos(in.Base(), uint(in.Line())+1, 1) // +1 because #line nnn means line nnn starts on next line
    	in.Stack.SetBase(src.NewLinePragmaBase(pos, file, objabi.AbsFile(objabi.WorkingDir(), file, *flags.TrimPath), uint(line), 1))
    }
    
    // #undef processing
    func (in *Input) undef() {
    	name := in.macroName()
    	if in.macros[name] == nil {
    		in.Error("#undef for undefined macro:", name)
    	}
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Nov 12 03:59:40 GMT 2025
    - 12.4K bytes
    - Click Count (0)
  10. ci/official/utilities/setup_docker.sh

        is_windows=false
      fi
    
      WORKING_DIR="$TFCI_GIT_DIR"
      if [[ "$is_windows" == true ]]; then
        env_file=$(cygpath -m $env_file)
        WORKING_DIR=$(replace_drive_letter_with_prefix "$TFCI_GIT_DIR" "$TFCI_OUTPUT_WIN_DOCKER_DIR")
        echo "GCE_METADATA_HOST=$IP_ADDR" >> $env_file
      fi
    
      docker run $TFCI_DOCKER_ARGS --name tf -w "$WORKING_DIR" -itd --rm \
          -v "$TFCI_GIT_DIR:$WORKING_DIR" \
          --env-file "$env_file" \
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Nov 20 17:33:55 GMT 2025
    - 2.9K bytes
    - Click Count (0)
Back to Top