Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for WithArgs (0.36 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            given:
            singleProjectBuild("buildC") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
            withArgs(["--include-build", '../buildB', "--include-build", '../buildC'])
            buildA.buildFile << """
                dependencies {
                    implementation "org.test:buildB:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. tools/docker-builder/dockerfile/parse.go

    // Option is a functional option for remote operations.
    type Option func(*options) error
    
    type options struct {
    	args       map[string]string
    	ignoreRuns bool
    	baseDir    string
    }
    
    // WithArgs sets the input args to the dockerfile
    func WithArgs(a map[string]string) Option {
    	return func(o *options) error {
    		o.args = a
    		return nil
    	}
    }
    
    // IgnoreRuns tells the parser to ignore RUN statements rather than failing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    		b.Command = append(b.Command, values[i])
    	}
    	return b
    }
    
    // WithArgs adds the given value to the Args 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 Args field.
    func (b *ContainerApplyConfiguration) WithArgs(values ...string) *ContainerApplyConfiguration {
    	for i := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. tools/docker-builder/crane.go

    				p := a.PlanFor(arch).Find(t)
    				if p == nil {
    					continue
    				}
    				df := p.Dockerfile
    				dargs := createArgs(a, t, v, arch)
    				args, err := dockerfile.Parse(df, dockerfile.WithArgs(dargs), dockerfile.IgnoreRuns())
    				if err != nil {
    					return fmt.Errorf("parse: %v", err)
    				}
    				args.Arch = arch
    				args.Name = t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	}
    	return b
    }
    
    // WithArgs adds the given value to the Args 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 Args field.
    func (b *EphemeralContainerApplyConfiguration) WithArgs(values ...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)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    	}
    	return b
    }
    
    // WithArgs adds the given value to the Args 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 Args field.
    func (b *EphemeralContainerCommonApplyConfiguration) WithArgs(values ...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