Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for withWorkingDir (0.49 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            """
            run "visualStudio"
    
            when:
            def resultDebug = msbuild
                    .withWorkingDir(testDirectory)
                    .withSolution(solutionFile)
                    .withConfiguration("debugX86")
                    .withProject(visualStudioProjectName)
                    .succeeds()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/NativeIdeSamplesIntegrationTest.groovy

            useMsbuildTool()
    
            given:
            sample visualStudio
            run "visualStudio"
    
            when:
            def resultDebug = msbuild
                .withWorkingDir(visualStudio.dir)
                .withSolution(solutionFile(visualStudio.dir.file("vs/visual-studio.sln")))
                .withConfiguration("debug")
                .withProject("mainExe")
                .succeeds()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	}
    	return b
    }
    
    // WithWorkingDir sets the WorkingDir field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the WorkingDir field is set to the value of the last call.
    func (b *EphemeralContainerApplyConfiguration) WithWorkingDir(value string) *EphemeralContainerApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    		b.Args = append(b.Args, values[i])
    	}
    	return b
    }
    
    // WithWorkingDir sets the WorkingDir field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the WorkingDir field is set to the value of the last call.
    func (b *ContainerApplyConfiguration) WithWorkingDir(value string) *ContainerApplyConfiguration {
    	b.WorkingDir = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

        public MSBuildExecutor(TestFile workingDir, AvailableToolChains.InstalledToolChain toolChain) {
            this.workingDir = workingDir;
            this.toolChain = toolChain;
        }
    
        public MSBuildExecutor withWorkingDir(TestFile workingDir) {
            this.workingDir = workingDir;
            return this;
        }
    
        public MSBuildExecutor withSolution(SolutionFile visualStudioSolution) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    	}
    	return b
    }
    
    // WithWorkingDir sets the WorkingDir field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the WorkingDir field is set to the value of the last call.
    func (b *EphemeralContainerCommonApplyConfiguration) WithWorkingDir(value string) *EphemeralContainerCommonApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top