Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 712 for fmtF (0.04 sec)

  1. pkg/controller/volume/expand/expand_controller.go

    			return fmt.Errorf(errorMsg)
    		}
    
    		pvc, err := util.SetClaimResizer(pvc, csiResizerName, expc.kubeClient)
    		if err != nil {
    			errorMsg := fmt.Sprintf("error setting resizer annotation to pvc %s, with error %v", key, err)
    			expc.recorder.Event(pvc, v1.EventTypeWarning, events.ExternalExpanding, errorMsg)
    			return fmt.Errorf(errorMsg)
    		}
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	if addr < f.m.start || addr >= f.m.limit {
    		return fmt.Errorf("specified address %x is outside the mapping range [%x, %x] for file %q", addr, f.m.start, f.m.limit, f.name)
    	}
    	ef, err := elfOpen(f.name)
    	if err != nil {
    		return fmt.Errorf("error parsing %s: %v", f.name, err)
    	}
    	defer ef.Close()
    
    	ph, err := f.m.findProgramHeader(ef, addr)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    func (t Tile) Path() string {
    	n := t.N
    	nStr := fmt.Sprintf("%03d", n%pathBase)
    	for n >= pathBase {
    		n /= pathBase
    		nStr = fmt.Sprintf("x%03d/%s", n%pathBase, nStr)
    	}
    	pStr := ""
    	if t.W != 1<<uint(t.H) {
    		pStr = fmt.Sprintf(".p/%d", t.W)
    	}
    	var L string
    	if t.L == -1 {
    		L = "data"
    	} else {
    		L = fmt.Sprintf("%d", t.L)
    	}
    	return fmt.Sprintf("tile/%d/%s/%s%s", t.H, L, nStr, pStr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/config-current.go

    	if err != nil {
    		configLogIf(ctx, fmt.Errorf("Unable to initialize remote webhook DNS config %w", err))
    	}
    	if err == nil && dnsURL != "" {
    		bootstrapTraceMsg("initialize remote bucket DNS store")
    		globalDNSConfig, err = dns.NewOperatorDNS(dnsURL,
    			dns.Authentication(dnsUser, dnsPass),
    			dns.RootCAs(globalRootCAs))
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path.go

    			return fmt.Errorf("hostPath type check failed: %s is not a socket file", ftc.GetPath())
    		}
    	case v1.HostPathCharDev:
    		if !ftc.IsChar() {
    			return fmt.Errorf("hostPath type check failed: %s is not a character device", ftc.GetPath())
    		}
    	case v1.HostPathBlockDev:
    		if !ftc.IsBlock() {
    			return fmt.Errorf("hostPath type check failed: %s is not a block device", ftc.GetPath())
    		}
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/proxy/config/config.go

    	oldEndpointSlice, ok := oldObj.(*discoveryv1.EndpointSlice)
    	if !ok {
    		utilruntime.HandleError(fmt.Errorf("unexpected object type: %T", newObj))
    		return
    	}
    	newEndpointSlice, ok := newObj.(*discoveryv1.EndpointSlice)
    	if !ok {
    		utilruntime.HandleError(fmt.Errorf("unexpected object type: %T", newObj))
    		return
    	}
    	for _, h := range c.eventHandlers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/log/slog/value.go

    	case KindDuration:
    		return append(dst, v.duration().String()...)
    	case KindTime:
    		return append(dst, v.time().String()...)
    	case KindGroup:
    		return fmt.Append(dst, v.group())
    	case KindAny, KindLogValuer:
    		return fmt.Append(dst, v.any)
    	default:
    		panic(fmt.Sprintf("bad kind: %s", v.Kind()))
    	}
    }
    
    // A LogValuer is any Go value that can convert itself into a Value for logging.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/certs.go

    }
    
    func newCertSubPhase(certSpec *certsphase.KubeadmCert, run func(c workflow.RunData) error) workflow.Phase {
    	phase := workflow.Phase{
    		Name:  certSpec.Name,
    		Short: fmt.Sprintf("Generate the %s", certSpec.LongName),
    		Long: fmt.Sprintf(
    			genericLongDesc,
    			certSpec.LongName,
    			certSpec.BaseName,
    			getSANDescription(certSpec),
    		),
    		Run:          run,
    		InheritFlags: getCertPhaseFlags(certSpec.Name),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/internal/trace/event.go

    		r := e.Range()
    		fmt.Fprintf(&sb, " Name=%q Scope=%s", r.Name, r.Scope)
    		if kind == EventRangeEnd {
    			fmt.Fprintf(&sb, " Attributes=[")
    			for i, attr := range e.RangeAttributes() {
    				if i != 0 {
    					fmt.Fprintf(&sb, " ")
    				}
    				fmt.Fprintf(&sb, "%q=%s", attr.Name, valueAsString(attr.Value))
    			}
    			fmt.Fprintf(&sb, "]")
    		}
    	case EventTaskBegin, EventTaskEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client_test.go

    		if len(l) != 0 {
    			return fmt.Errorf("expected no items returned for unknown CRD")
    		}
    		return nil
    	}, retry.Timeout(time.Second*5), retry.Converge(5))
    
    	clienttest.MakeCRD(t, fake, r.GroupVersionResource())
    
    	retry.UntilSuccessOrFail(t, func() error {
    		l := store.List(r.GroupVersionKind(), "")
    		if len(l) != 1 {
    			return fmt.Errorf("expected items returned")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top