Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LocalParam (0.82 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    		restMapperFn: b.restMapperFn,
    		clientFn:     b.getClient,
    		decoder:      codecFactory.UniversalDecoder(decodingVersions...),
    	}
    
    	return b
    }
    
    // LocalParam calls Local() if local is true.
    func (b *Builder) LocalParam(local bool) *Builder {
    	if local {
    		b.Local()
    	}
    	return b
    }
    
    // Local will avoid asking the server for results.
    func (b *Builder) Local() *Builder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top