Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,767 for cmfake (0.09 sec)

  1. pkg/api/endpoints/testing/make.go

    Tim Hockin <******@****.***> 1625032124 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 01:26:45 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/configset.go

    func (h *handler) fromConfigMap(client clientset.Interface, cmName, cmKey string, mustExist bool) (kubeadmapi.ComponentConfig, error) {
    	configMap, err := apiclient.GetConfigMapWithShortRetry(client, metav1.NamespaceSystem, cmName)
    	if err != nil {
    		if !mustExist && (apierrors.IsNotFound(err) || apierrors.IsForbidden(err)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/kube/multicluster/fake.go

    // limitations under the License.
    
    package multicluster
    
    import (
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/kube"
    )
    
    type Fake struct {
    	handlers []handler
    }
    
    func (f *Fake) registerHandler(h handler) {
    	f.handlers = append(f.handlers, h)
    }
    
    func (f *Fake) Add(id cluster.ID, client kube.Client, stop chan struct{}) {
    	for _, handler := range f.handlers {
    		handler.clusterAdded(&Cluster{
    			ID:            id,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. pilot/test/xds/fake.go

    		objects = append(objects, o)
    	}
    	return objects, nil
    }
    
    // DisableAuthorizationForSecret makes the authorization check always pass. Should be used only for tests.
    func DisableAuthorizationForSecret(fake *fake.Clientset) {
    	fake.Fake.PrependReactor("create", "subjectaccessreviews", func(action k8stesting.Action) (bool, runtime.Object, error) {
    		return true, &authorizationv1.SubjectAccessReview{
    			Status: authorizationv1.SubjectAccessReviewStatus{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/fake.go

    Jefftree <******@****.***> 1705698827 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/fake.go

    Abu Kashem <******@****.***> 1632151262 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 01 19:58:11 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/fake.go

    Ilya Dmitrichenko <******@****.***> 1551884065 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. pkg/securitycontext/fake.go

    Serguei Bezverkhi <******@****.***> 1545326888 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 20 19:43:52 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. build/make-clean.sh

    Benjamin Elder <******@****.***> 1547627608 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:33:28 UTC 2019
    - 845 bytes
    - Viewed (0)
  10. hack/make-rules/make-help.sh

    			if [ ${CMD_FLAG} = true ]; then
    				continue 2;
    			fi
    
    			echo -e "${red}${CMD_TARGETS}${reset}"
    			make -C "${KUBE_ROOT}" "${tar}" PRINT_HELP=y
    			echo "---------------------------------------------------------------------------------"
    
    			CMD_FLAG=true
    			continue 2
    		fi
    	done
    
    	echo -e "${red}${tar}${reset}"
    	make -C "${KUBE_ROOT}" "${tar}" PRINT_HELP=y
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top