Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withCommand (0.14 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/execaction.go

    	return &ExecActionApplyConfiguration{}
    }
    
    // WithCommand adds the given value to the Command field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Command field.
    func (b *ExecActionApplyConfiguration) WithCommand(values ...string) *ExecActionApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

            this
        }
    
        @PackageScope
        GradleExecResult execute(String... command) {
            if (!started) {
                container.withCommand("tail", "-f", "/dev/null")
                startContainer()
            }
            return container.execute(command)
        }
    
        void startContainer() {
            started = true
            container.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top