Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getOtherValue (0.22 sec)

  1. pkg/test/framework/resource/resource.go

    type FakeResource struct {
    	IDValue    string
    	OtherValue string
    }
    
    func (f *FakeResource) ID() ID {
    	return FakeID(f.IDValue)
    }
    
    // GetOtherValue is an additional method used to distinguish this resource API from others.
    func (f *FakeResource) GetOtherValue() string {
    	return f.OtherValue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 30 01:00:01 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            def state = Mock(ModelElementState)
            def prop = Mock(SomeUnmanagedStruct)
            def delegate = new Object() {
                SomeUnmanagedStruct getOtherValue() {
                    return prop
                }
            }
    
            given:
            def proxyClass = generate(SomeTypeWithReadOnlyProperty, delegate.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  3. pkg/test/framework/suite_test.go

    	e := kube.FakeEnvironment{NumClusters: numClusters}
    	return func(ctx resource.Context) (resource.Environment, error) {
    		return e, nil
    	}
    }
    
    type OtherInterface interface {
    	GetOtherValue() string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top