Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for withPanels (0.18 sec)

  1. tools/docker-builder/main.go

    )
    
    var rootCmd = &cobra.Command{
    	SilenceUsage: true,
    	Short:        "Builds Istio docker images",
    	RunE: func(cmd *cobra.Command, _ []string) error {
    		t0 := time.Now()
    		defer func() {
    			log.WithLabels("runtime", time.Since(t0)).Infof("build complete")
    		}()
    		ctx, shutdown, err := tracing.InitializeFullBinary("docker-builder")
    		if err != nil {
    			return err
    		}
    		defer shutdown()
    		if version {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    		},
    	}
    }
    
    func patchContent(namespace, name, invalidSince string, uID types.UID) []byte {
    	patch, _ := json.Marshal(applyv1.Secret(name, namespace).WithUID(uID).WithLabels(map[string]string{serviceaccount.InvalidSinceLabelKey: invalidSince}))
    	return patch
    }
    
    func TestLegacyServiceAccountTokenCleanUp(t *testing.T) {
    	testcases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. api/go1.9.txt

    pkg runtime/pprof, func Label(context.Context, string) (string, bool)
    pkg runtime/pprof, func Labels(...string) LabelSet
    pkg runtime/pprof, func SetGoroutineLabels(context.Context)
    pkg runtime/pprof, func WithLabels(context.Context, LabelSet) context.Context
    pkg runtime/pprof, type LabelSet struct
    pkg sync, method (*Map) Delete(interface{})
    pkg sync, method (*Map) Load(interface{}) (interface{}, bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller.go

    		if _, ok := s.Data[string(existingCluster.ID)]; !ok {
    			c.deleteCluster(secretKey, existingCluster)
    		}
    	}
    
    	var errs *multierror.Error
    	for clusterID, kubeConfig := range s.Data {
    		logger := log.WithLabels("cluster", clusterID, "secret", secretKey)
    		if cluster.ID(clusterID) == c.configClusterID {
    			logger.Infof("ignoring cluster as it would overwrite the config cluster")
    			continue
    		}
    
    		action := Add
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    		kinds:            map[config.GroupVersionKind]kclient.Untyped{},
    		handlers:         map[config.GroupVersionKind][]model.EventHandler{},
    		client:           client,
    		logger:           scope.WithLabels("controller", opts.Identifier),
    		filtersByGVK:     opts.FiltersByGVK,
    	}
    
    	for _, s := range out.schemas.All() {
    		// From the spec: "Its name MUST be in the format <.spec.name>.<.spec.group>."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/framework_test.go

    	retVolume.SetFinalizers(finalizers)
    	return retVolume
    }
    
    // withLabels applies the given labels to the first volume in the array and
    // returns the array.  Meant to be used to compose volumes specified inline in
    // a test.
    func withLabels(labels map[string]string, volumes []*v1.PersistentVolume) []*v1.PersistentVolume {
    	volumes[0].Labels = labels
    	return volumes
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    	opt2.ErrorOutputPaths = op
    	opt2.SetDefaultOutputLevel("default", log.InfoLevel)
    
    	return log.Configure(&opt2)
    }
    
    func logRuntime(start time.Time, format string, args ...any) {
    	log.WithLabels("runtime", time.Since(start)).Infof(format, args...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    }
    
    // Reconcile takes in the name of a Gateway and ensures the cluster is in the desired state
    func (d *DeploymentController) Reconcile(req types.NamespacedName) error {
    	log := log.WithLabels("gateway", req)
    
    	gw := d.gateways.Get(req.Name, req.Namespace)
    	if gw == nil {
    		log.Debugf("gateway no longer exists")
    		// we'll ignore not-found errors, since they can't be fixed by an immediate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. pkg/adsc/adsc.go

    				a.XDSUpdates <- nil
    				close(a.errChan)
    			}
    			return
    		}
    
    		// Group-value-kind - used for high level api generator.
    		resourceGvk, isMCP := convertTypeURLToMCPGVK(msg.TypeUrl)
    
    		adscLog.WithLabels("type", msg.TypeUrl, "count", len(msg.Resources), "nonce", msg.Nonce).Info("Received")
    		if a.cfg.ResponseHandler != nil {
    			a.cfg.ResponseHandler.HandleResponse(a, msg)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top