Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 158 for Id (0.23 sec)

  1. cmd/kubeadm/app/cmd/kubeconfig_test.go

    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    	kubeconfigtestutil "k8s.io/kubernetes/cmd/kubeadm/test/kubeconfig"
    )
    
    func generateTestKubeadmConfig(dir, id, certDir, clusterName string) (string, error) {
    	cfgPath := filepath.Join(dir, id)
    	initCfg := kubeadmapiv1.InitConfiguration{
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: kubeadmapiv1.SchemeGroupVersion.String(),
    			Kind:       "InitConfiguration",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. cmd/bucket-lifecycle-handlers.go

    		return
    	}
    
    	// Create a map of updated set of rules in request
    	updatedRules := make(map[string]lifecycle.Rule, len(bucketLifecycle.Rules))
    	for _, rule := range bucketLifecycle.Rules {
    		updatedRules[rule.ID] = rule
    	}
    
    	// Get list of rules for the bucket from disk
    	meta, err := globalBucketMetadataSys.GetConfigFromDisk(ctx, bucket)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. cmd/typed-errors.go

    var errIAMNotInitialized = errors.New("IAM sub-system is being initialized, please try again")
    
    // error returned when upload id not found
    var errUploadIDNotFound = errors.New("Specified Upload ID is not found")
    
    // error returned when PartNumber is greater than the maximum allowed 10000 parts
    var errInvalidMaxParts = errors.New("Part number is greater than the maximum allowed 10000 parts")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/trace/goroutinegen.go

    	ctx.SetResourceType("G")
    
    	// Finish off global ranges.
    	g.globalRangeGenerator.Finish(ctx)
    
    	// Finish off all the goroutine slices.
    	for id, gs := range g.gStates {
    		gs.finish(ctx)
    
    		// Tell the emitter about the goroutines we want to render.
    		ctx.Resource(uint64(id), gs.name())
    	}
    
    	// Set the goroutine to focus on.
    	if g.focus != trace.NoGoroutine {
    		ctx.Focus(uint64(g.focus))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/conversion.go

    		Name:     port.Name,
    		Port:     int(port.Port),
    		Protocol: kube.ConvertProtocol(port.Port, port.Name, port.Protocol, port.AppProtocol),
    	}
    }
    
    func ConvertService(svc corev1.Service, domainSuffix string, clusterID cluster.ID, mesh *meshconfig.MeshConfig) *model.Service {
    	addrs := []string{constants.UnspecifiedIP}
    	resolution := model.ClientSideLB
    	externalName := ""
    	nodeLocal := false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/output/fuzzer/fuzzer.go

    	return []interface{}{
    		fuzzBootstrapToken,
    	}
    }
    
    func fuzzBootstrapToken(obj *output.BootstrapToken, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    	obj.Token = &bootstraptokenv1.BootstrapTokenString{ID: "uvxdac", Secret: "fq35fuyue3kd4gda"}
    	obj.Description = ""
    	obj.TTL = &metav1.Duration{Duration: time.Hour * 24}
    	obj.Usages = []string{"authentication", "signing"}
    	obj.Groups = []string{constants.NodeBootstrapTokenAuthGroup}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/build/relnote/links.go

    // If so, it returns the identifier, which is a prefix of s, and ok == true.
    // Otherwise it returns "", false.
    // The caller should skip over the first len(id) bytes of s
    // before further processing.
    func ident(s string) (id string, ok bool) {
    	// Scan [\pL_][\pL_0-9]*
    	n := 0
    	for n < len(s) {
    		if c := s[n]; c < utf8.RuneSelf {
    			if isIdentASCII(c) && (n > 0 || c < '0' || c > '9') {
    				n++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/oidc.go

    	if authRequest.GrpcContext != nil {
    		bearerToken, err := security.ExtractBearerToken(authRequest.GrpcContext)
    		if err != nil {
    			return nil, fmt.Errorf("ID token extraction error: %v", err)
    		}
    		return j.authenticate(authRequest.GrpcContext, bearerToken)
    	}
    	if authRequest.Request != nil {
    		bearerToken, err := security.ExtractRequestToken(authRequest.Request)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. security/pkg/server/ca/monitoring.go

    		"The number of errors occurred when parsing the CSR.",
    	)
    
    	idExtractionErrorCounts = monitoring.NewSum(
    		"citadel_server_id_extraction_err_count",
    		"The number of errors occurred when extracting the ID from CSR.",
    	)
    
    	certSignErrorCounts = monitoring.NewSum(
    		"citadel_server_csr_sign_err_count",
    		"The number of errors occurred when signing the CSR.",
    	)
    
    	successCounts = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/go/ast/example_test.go

    	f, err := parser.ParseFile(fset, "", src, 0)
    	if err != nil {
    		panic(err)
    	}
    
    	// Print identifiers in order
    	for n := range ast.Preorder(f) {
    		id, ok := n.(*ast.Ident)
    		if !ok {
    			continue
    		}
    		fmt.Println(id.Name)
    	}
    
    	// Output:
    	// p
    	// f
    	// x
    	// y
    	// int
    	// print
    	// x
    	// y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top