Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 134 of 134 for Gier (0.98 sec)

  1. cmd/admin-handler-utils.go

    			}
    		case errors.Is(err, kes.ErrKeyExists):
    			apiErr = APIError{
    				Code:           "XMinioKMSKeyExists",
    				Description:    err.Error(),
    				HTTPStatusCode: http.StatusConflict,
    			}
    
    		// Tier admin API errors
    		case errors.Is(err, madmin.ErrTierNameEmpty):
    			apiErr = APIError{
    				Code:           "XMinioAdminTierNameEmpty",
    				Description:    err.Error(),
    				HTTPStatusCode: http.StatusBadRequest,
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    	podList, err := g.client.CoreV1().Pods(metav1.NamespaceSystem).List(
    		context.TODO(),
    		metav1.ListOptions{
    			LabelSelector: fmt.Sprintf("component=%s,tier=%s", name, constants.ControlPlaneTier),
    		},
    	)
    	if err != nil {
    		return nil, errors.Wrap(err, "couldn't list pods in cluster")
    	}
    
    	componentVersions := make(map[string][]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/security/http-basic-auth.md

    <img src="/img/tutorial/security/image12.png">
    
    ## Den Benutzernamen überprüfen
    
    Hier ist ein vollständigeres Beispiel.
    
    Verwenden Sie eine Abhängigkeit, um zu überprüfen, ob Benutzername und Passwort korrekt sind.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. cmd/logging.go

    }
    
    func stsLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "sts", err, errKind...)
    }
    
    func tierLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "tier", err, errKind...)
    }
    
    func kmsLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "kms", err, errKind...)
    }
    
    // KMSLogger permits access to kms module specific logging
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top