Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,729 for info2 (0.05 sec)

  1. pilot/pkg/bootstrap/certcontroller.go

    	log.Infof("update root cert and generate new dns certs")
    	caBundle := s.CA.GetCAKeyCertBundle().GetRootCertPem()
    	certChain, keyPEM, err := s.CA.GenKeyCert(s.dnsNames, SelfSignedCACertTTL.Get(), false)
    	if err != nil {
    		return err
    	}
    
    	if features.MultiRootMesh {
    		// Trigger trust anchor update, this will send PCDS to all sidecars.
    		log.Infof("Update trust anchor with new root cert")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/cache.go

    			return info, err
    		}
    
    		info, err = r.repo(ctx).Stat(ctx, rev)
    		if err == nil {
    			// If we resolved, say, 1234abcde to v0.0.0-20180604122334-1234abcdef78,
    			// then save the information under the proper version, for future use.
    			if info.Version != rev {
    				file, _ = CachePath(ctx, module.Version{Path: r.path, Version: info.Version}, "info")
    				r.statCache.Do(info.Version, func() (*RevInfo, error) {
    					return info, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pkg/auth/authorizer/abac/abac_test.go

    		}
    	}
    }
    
    func getResourceRules(infos []authorizer.ResourceRuleInfo) []authorizer.DefaultResourceRuleInfo {
    	rules := make([]authorizer.DefaultResourceRuleInfo, len(infos))
    	for i, info := range infos {
    		rules[i] = authorizer.DefaultResourceRuleInfo{
    			Verbs:         info.GetVerbs(),
    			APIGroups:     info.GetAPIGroups(),
    			Resources:     info.GetResources(),
    			ResourceNames: info.GetResourceNames(),
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    // and all the readings that have been taked from that meter.
    // The now and incrR parameters are only used to add info to the log messages.
    func (qs *queueSet) advanceEpoch(ctx context.Context, now time.Time, incrR fqrequest.SeatSeconds) {
    	oldR := qs.currentR
    	qs.currentR -= rDecrement
    	klog.InfoS("Advancing epoch", "QS", qs.qCfg.Name, "when", now.Format(nsTimeFmt), "oldR", oldR, "newR", qs.currentR, "incrR", incrR)
    	success := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		}
    
    		pageSize, err := v1helper.HugePageSizeFromResourceName(resourceObj)
    		if err != nil {
    			klog.InfoS("Failed to get hugepage size from resource", "object", resourceObj, "err", err)
    			continue
    		}
    
    		sizeString, err := v1helper.HugePageUnitSizeFromByteSize(pageSize.Value())
    		if err != nil {
    			klog.InfoS("Size is invalid", "object", resourceObj, "err", err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/cidrallocator.go

    	if err == nil {
    		c.queue.Add(key)
    	}
    }
    
    func (c *MetaAllocator) run() {
    	defer runtime.HandleCrash()
    	defer c.queue.ShutDown()
    	klog.Info("Starting ServiceCIDR Allocator Controller")
    	defer klog.Info("Stopping ServiceCIDR Allocator Controllerr")
    
    	// Wait for all involved caches to be synced, before processing items from the queue is started
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/iscsi.go

    	if err != nil {
    		return fmt.Errorf("iscsi: failed to detach disk: %s\nError: %v", mapPath, err)
    	}
    	klog.V(4).Infof("iscsi: %q is unmounted, deleting the directory", mapPath)
    	err = os.RemoveAll(mapPath)
    	if err != nil {
    		return fmt.Errorf("iscsi: failed to delete the directory: %s\nError: %v", mapPath, err)
    	}
    	klog.V(4).Infof("iscsi: successfully detached disk: %s", mapPath)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	errExist   = "file already exists"
    )
    
    // clientCertAuth struct holds info required to build a client certificate to provide authentication info in a kubeconfig object
    type clientCertAuth struct {
    	CAKey         crypto.Signer
    	Organizations []string
    }
    
    // tokenAuth struct holds info required to use a token to provide authentication info in a kubeconfig object
    type tokenAuth struct {
    	Token string `datapolicy:"token"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    	klog.V(4).Infof("Adding customresourcedefinition %s", castObj.Name)
    	c.enqueue(castObj)
    }
    
    func (c *DiscoveryController) updateCustomResourceDefinition(oldObj, newObj interface{}) {
    	castNewObj := newObj.(*apiextensionsv1.CustomResourceDefinition)
    	castOldObj := oldObj.(*apiextensionsv1.CustomResourceDefinition)
    	klog.V(4).Infof("Updating customresourcedefinition %s", castOldObj.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. tools/docker-builder/main.go

    	defer span.End()
    	if len(c) == 0 {
    		log.Infof("nothing to make")
    		return nil
    	}
    	if SkipMake == "true" {
    		return nil
    	}
    	shortArgs := []string{}
    	// Shorten output to avoid a ton of long redundant paths
    	for _, cs := range c {
    		shortArgs = append(shortArgs, filepath.Base(cs))
    	}
    	if len(c) == 0 {
    		log.Infof("Nothing to make")
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top