Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for KC (0.02 sec)

  1. pkg/kubelet/apis/config/validation/validation_others.go

    import (
    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    )
    
    // validateKubeletOSConfiguration validates os specific kubelet configuration and returns an error if it is invalid.
    func validateKubeletOSConfiguration(kc *kubeletconfig.KubeletConfiguration) error {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 917 bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    	var kc kclient.Untyped
    	if s.IsBuiltin() {
    		kc = kclient.NewUntypedInformer(cl.client, gvr, filter)
    	} else {
    		kc = kclient.NewDelayedInformer[controllers.Object](
    			cl.client,
    			gvr,
    			kubetypes.StandardInformer,
    			filter,
    		)
    	}
    
    	kind := s.Kind()
    	kc.AddEventHandler(controllers.EventHandler[controllers.Object]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. licenses/github.com/xlab/treeprint/LICENSE

    The MIT License (MIT)
    Copyright © 2016 Maxim Kupriianov <max@kc.vc>
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the “Software”), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 22:59:25 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/xlab/treeprint/LICENSE

    = vendor/github.com/xlab/treeprint licensed under: =
    
    The MIT License (MIT)
    Copyright © 2016 Maxim Kupriianov <max@kc.vc>
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the “Software”), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 00:50:43 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/controller.go

    func NewController(
    	kc kube.Client,
    	c model.ConfigStoreController,
    	waitForCRD func(class schema.GroupVersionResource, stop <-chan struct{}) bool,
    	credsController credentials.MulticlusterController,
    	options controller.Options,
    ) *Controller {
    	var ctl *status.Controller
    
    	namespaces := kclient.NewFiltered[*corev1.Namespace](kc, kubetypes.Filter{ObjectFilter: kc.ObjectFilter()})
    	gatewayController := &Controller{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pilot/pkg/credentials/kube/secrets.go

    }
    
    type authorizationKey string
    
    type authorizationResponse struct {
    	expiration time.Time
    	authorized error
    }
    
    var _ credentials.Controller = &CredentialsController{}
    
    func NewCredentialsController(kc kube.Client, handlers []func(name string, namespace string)) *CredentialsController {
    	// We only care about TLS certificates and docker config for Wasm image pulling.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/conversion_test.go

    	}
    }
    
    func createFakeClient(t test.Failer, objects ...runtime.Object) kclient.Client[*corev1.Service] {
    	kc := kube.NewFakeClient(objects...)
    	stop := test.NewStop(t)
    	services := kclient.New[*corev1.Service](kc)
    	kc.RunAndWait(stop)
    	kube.WaitForCacheSync("test", stop, services.HasSynced)
    	return services
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate.go

    			if kubeClientFunc == nil {
    				kubeClientFunc = ctx.CLIClient
    			}
    			var kubeClient kube.CLIClient
    			if mgArgs.EnableClusterSpecific {
    				kc, err := kubeClientFunc()
    				if err != nil {
    					return err
    				}
    				kubeClient = kc
    			}
    			l := clog.NewConsoleLogger(cmd.OutOrStdout(), cmd.ErrOrStderr(), installerScope)
    			return ManifestGenerate(kubeClient, rootArgs, mgArgs, l)
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. istioctl/pkg/wait/wait.go

    	g := withContext(ictx)
    	// copy nameflag to avoid race
    	nf := nameflag
    	g.Go(func(result chan string) error {
    		// retrieve latest generation from Kubernetes
    		kc, err := cliCtx.CLIClient()
    		if err != nil {
    			return err
    		}
    		dclient := kc.Dynamic()
    		r := dclient.Resource(targetSchema.GroupVersionResource()).Namespace(cliCtx.Namespace())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  10. pkg/test/framework/components/environment/kube/settings.go

    		return nil, err
    	}
    	var configs []cluster.Config
    	for i, kc := range s.KubeConfig {
    		ci := clusterIndex(i)
    		cfg := cluster.Config{
    			Name:    fmt.Sprintf("cluster-%d", i),
    			Network: s.networkTopology[ci],
    			Meta:    config.Map{"kubeconfig": kc},
    		}
    		if idx, ok := s.controlPlaneTopology[ci]; ok {
    			cfg.PrimaryClusterName = fmt.Sprintf("cluster-%d", idx)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top