Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for Gier (0.03 sec)

  1. cmd/warm-backend-gcs.go

    	client, err := storage.NewClient(context.Background(),
    		option.WithCredentialsJSON(credsJSON),
    		option.WithScopes(storage.ScopeReadWrite),
    		option.WithHTTPClient(clnt),
    		option.WithUserAgent(fmt.Sprintf("gcs-tier-%s", tier)+SlashSeparator+ReleaseTag),
    	)
    	if err != nil {
    		return nil, err
    	}
    	return &warmBackendGCS{client, conf.Bucket, conf.Prefix, conf.StorageClass}, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. 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