Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for WithPath (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            then:
            verifyTaskIds()
            def expectedTasks = [
                withPath(':buildSrc', ':sub:jar'),
                withPath(':buildSrc', ':jar'),
                withPath(':comp', ':sub:build'),
                withPath(':comp', ':build'),
                withPath(':', ':sub:build'),
                withPath(':', ':build')
            ]
            expectedTasks.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/keytopath.go

    	b.Key = &value
    	return b
    }
    
    // WithPath sets the Path 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 Path field is set to the value of the last call.
    func (b *KeyToPathApplyConfiguration) WithPath(value string) *KeyToPathApplyConfiguration {
    	b.Path = &value
    	return b
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/field/path.go

    import (
    	"bytes"
    	"fmt"
    	"strconv"
    )
    
    type pathOptions struct {
    	path *Path
    }
    
    // PathOption modifies a pathOptions
    type PathOption func(o *pathOptions)
    
    // WithPath generates a PathOption
    func WithPath(p *Path) PathOption {
    	return func(o *pathOptions) {
    		o.path = p
    	}
    }
    
    // ToPath produces *Path from a set of PathOption
    func ToPath(opts ...PathOption) *Path {
    	c := &pathOptions{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 11 08:23:53 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/glusterfsvolumesource.go

    	b.EndpointsName = &value
    	return b
    }
    
    // WithPath sets the Path 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 Path field is set to the value of the last call.
    func (b *GlusterfsVolumeSourceApplyConfiguration) WithPath(value string) *GlusterfsVolumeSourceApplyConfiguration {
    	b.Path = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/servicereference.go

    	b.Name = &value
    	return b
    }
    
    // WithPath sets the Path 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 Path field is set to the value of the last call.
    func (b *ServiceReferenceApplyConfiguration) WithPath(value string) *ServiceReferenceApplyConfiguration {
    	b.Path = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalElement.java

                String sourceSetName = beforeElement.getSourceSetName();
                TestFile file = projectDir.file(sourceFile.withPath("src/" + sourceSetName));
    
                file.assertExists();
    
                file.renameTo(projectDir.file(destinationFile.withPath("src/" + sourceSetName)));
            }
    
            @Override
            public List<SourceFile> getBeforeFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelReferenceTest.groovy

            original.atState(original.state).is(original)
        }
    
        def "can replace path"() {
            expect:
            def reference = ModelReference.of(ModelPath.path("some.path"), ModelType.of(String), ModelNode.State.Mutated).withPath(ModelPath.path("other.path"))
            reference.scope == null
            reference.path == ModelPath.path("other.path")
            reference.type == ModelType.of(String)
            !reference.untyped
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/servicereference.go

    	b.Name = &value
    	return b
    }
    
    // WithPath sets the Path 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 Path field is set to the value of the last call.
    func (b *ServiceReferenceApplyConfiguration) WithPath(value string) *ServiceReferenceApplyConfiguration {
    	b.Path = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/servicereference.go

    	b.Name = &value
    	return b
    }
    
    // WithPath sets the Path 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 Path field is set to the value of the last call.
    func (b *ServiceReferenceApplyConfiguration) WithPath(value string) *ServiceReferenceApplyConfiguration {
    	b.Path = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/servicereference.go

    	b.Name = &value
    	return b
    }
    
    // WithPath sets the Path 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 Path field is set to the value of the last call.
    func (b *ServiceReferenceApplyConfiguration) WithPath(value string) *ServiceReferenceApplyConfiguration {
    	b.Path = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top