Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for fmtE (0.05 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/generated.pb.go

    	s := strings.Join([]string{`&HorizontalPodAutoscalerCondition{`,
    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Status:` + fmt.Sprintf("%v", this.Status) + `,`,
    		`LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 162.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`Verb:` + fmt.Sprintf("%v", this.Verb) + `,`,
    		`Group:` + fmt.Sprintf("%v", this.Group) + `,`,
    		`Version:` + fmt.Sprintf("%v", this.Version) + `,`,
    		`Resource:` + fmt.Sprintf("%v", this.Resource) + `,`,
    		`Subresource:` + fmt.Sprintf("%v", this.Subresource) + `,`,
    		`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
    - 100.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	if err != nil {
    		return nil, err
    	}
    	if len(jws.Signatures) == 0 {
    		return nil, fmt.Errorf("jwt contained no signatures")
    	}
    	kid := jws.Signatures[0].Header.KeyID
    
    	for _, key := range s.keys {
    		if key.KeyID == kid {
    			return jws.Verify(key)
    		}
    	}
    
    	return nil, fmt.Errorf("no keys matches jwk keyid")
    }
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	var args string
    	if len(t.Args) == 0 {
    		args = fmt.Sprintf("%*sArgs: nil", indent+2, "")
    	} else {
    		args = fmt.Sprintf("%*sArgs:", indent+2, "")
    		for i, a := range t.Args {
    			args += "\n"
    			args += a.goString(indent+4, fmt.Sprintf("%d: ", i))
    		}
    	}
    	return fmt.Sprintf("%*s%sTemplate (%p):\n%s\n%s", indent, "", field, t,
    		t.Name.goString(indent+2, "Name: "), args)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/generated.pb.go

    		`StartTime:` + strings.Replace(fmt.Sprintf("%v", this.StartTime), "Time", "v1.Time", 1) + `,`,
    		`CompletionTime:` + strings.Replace(fmt.Sprintf("%v", this.CompletionTime), "Time", "v1.Time", 1) + `,`,
    		`Active:` + fmt.Sprintf("%v", this.Active) + `,`,
    		`Succeeded:` + fmt.Sprintf("%v", this.Succeeded) + `,`,
    		`Failed:` + fmt.Sprintf("%v", this.Failed) + `,`,
    		`CompletedIndexes:` + fmt.Sprintf("%v", this.CompletedIndexes) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.pb.go

    	s := strings.Join([]string{`&AuditAnnotation{`,
    		`Key:` + fmt.Sprintf("%v", this.Key) + `,`,
    		`ValueExpression:` + fmt.Sprintf("%v", this.ValueExpression) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *ExpressionWarning) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&ExpressionWarning{`,
    		`FieldRef:` + fmt.Sprintf("%v", this.FieldRef) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 187.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/generated.pb.go

    	}
    	s := strings.Join([]string{`&IPBlock{`,
    		`CIDR:` + fmt.Sprintf("%v", this.CIDR) + `,`,
    		`Except:` + fmt.Sprintf("%v", this.Except) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *Ingress) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Ingress{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    package v1beta1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	k8s_io_api_core_v1 "k8s.io/api/core/v1"
    	v11 "k8s.io/api/core/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.pb.go

    	}
    	s := strings.Join([]string{`&FlowSchemaCondition{`,
    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Status:` + fmt.Sprintf("%v", this.Status) + `,`,
    		`LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta2/generated.pb.go

    	s := strings.Join([]string{`&HorizontalPodAutoscalerCondition{`,
    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Status:` + fmt.Sprintf("%v", this.Status) + `,`,
    		`LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 163K bytes
    - Viewed (0)
Back to top