Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 207 for fmtF (0.04 sec)

  1. src/internal/trace/order.go

    func (c seqCounter) String() string {
    	return fmt.Sprintf("%d (gen=%d)", c.seq, c.gen)
    }
    
    func dumpOrdering(order *ordering) string {
    	var sb strings.Builder
    	for id, state := range order.gStates {
    		fmt.Fprintf(&sb, "G %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.pStates {
    		fmt.Fprintf(&sb, "P %d [status=%s seq=%s]\n", id, state.status, state.seq)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *Subject) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Subject{`,
    		`Kind:` + fmt.Sprintf("%v", this.Kind) + `,`,
    		`APIGroup:` + fmt.Sprintf("%v", this.APIGroup) + `,`,
    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	kubeletConfigFile, err := filepath.Abs(name)
    	if err != nil {
    		return nil, fmt.Errorf(errFmt, name, err)
    	}
    	loader, err := configfiles.NewFsLoader(&utilfs.DefaultFs{}, kubeletConfigFile)
    	if err != nil {
    		return nil, fmt.Errorf(errFmt, name, err)
    	}
    	kc, err := loader.Load()
    	if err != nil {
    		return nil, fmt.Errorf(errFmt, name, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`LastUpdateTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastUpdateTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: Endpoint: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: Endpoint: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    	}
    
    	if resizeOptions.VolumeSpec.Name() == AlwaysFailNodeExpansion {
    		return false, fmt.Errorf("test failure: NodeExpand")
    	}
    
    	if resizeOptions.VolumeSpec.Name() == FailVolumeExpansion {
    		return false, fmt.Errorf("fail volume expansion for volume: %s", FailVolumeExpansion)
    	}
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: Endpoint: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: Endpoint: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    		setCondition(hpa, autoscalingv2.ScalingActive, v1.ConditionFalse, "InvalidSelector", "the HPA target's scale is missing a selector")
    		return nil, fmt.Errorf(errMsg)
    	}
    
    	parsedSelector, err := labels.Parse(selector)
    	if err != nil {
    		errMsg := fmt.Sprintf("couldn't convert selector into a corresponding internal selector object: %v", err)
    		a.eventRecorder.Event(hpa, v1.EventTypeWarning, "InvalidSelector", errMsg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    				MatchType: &istio.StringMatch_Prefix{Prefix: fmt.Sprintf("/%s/", *m.Service)},
    			}, nil
    		}
    		if m.Service == nil {
    			return &istio.StringMatch{
    				MatchType: &istio.StringMatch_Regex{Regex: fmt.Sprintf("/[^/]+/%s", *m.Method)},
    			}, nil
    		}
    		return &istio.StringMatch{
    			MatchType: &istio.StringMatch_Exact{Exact: fmt.Sprintf("/%s/%s", *m.Service, *m.Method)},
    		}, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // ignores leading and trailing space.) These are examples of an example:
    //
    //	func ExampleHello() {
    //	    fmt.Println("hello")
    //	    // Output: hello
    //	}
    //
    //	func ExampleSalutations() {
    //	    fmt.Println("hello, and")
    //	    fmt.Println("goodbye")
    //	    // Output:
    //	    // hello, and
    //	    // goodbye
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top