Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for anni (0.21 sec)

  1. internal/logger/console.go

    	// of splitting error text and always pretty printing the
    	// red banner along with the error message. Since the error
    	// message itself contains some colored text, we needed
    	// to use some ANSI control escapes to cursor color state
    	// and freely move in the screen.
    	for _, line := range strings.Split(errMsg, "\n") {
    		if len(line) == 0 {
    			// No more text to print, just quit.
    			break
    		}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 17:57:52 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. cmd/update-notifier.go

    func colorizeUpdateMessage(updateString string, newerThan string) string {
    	msgLine1Fmt := " You are running an older version of MinIO released %s "
    	msgLine2Fmt := " Update: %s "
    
    	// Calculate length *without* color coding: with ANSI terminal
    	// color characters, the result is incorrect.
    	line1Length := len(fmt.Sprintf(msgLine1Fmt, newerThan))
    	line2Length := len(fmt.Sprintf(msgLine2Fmt, updateString))
    
    	// Populate lines with color coding.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 09 03:07:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  3. go.sum

    github.com/montanaflynn/stats v0.7.1 h1:etflOAAHORrCC44V+aR6Ftzort912ZU+YLiSTuV8eaE=
    github.com/montanaflynn/stats v0.7.1/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow=
    github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 h1:ZK8zHtRHOkbHy6Mmr5D264iyp3TiX5OmNcI5cIARiQI=
    github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6/go.mod h1:CJlz5H+gyd6CUWT45Oy4q24RdLyn7Md9Vj2/ldJBSIo=
    github.com/muesli/cancelreader v0.2.2 h1:3I4Kt4BQjOR54NavqnDogx/MIoWBFa0StPA8ELUXHmA=
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 84.2K bytes
    - Viewed (0)
  4. internal/color/color.go

    package color
    
    import (
    	"fmt"
    
    	"github.com/fatih/color"
    )
    
    // global colors.
    var (
    	// Check if we stderr, stdout are dumb terminals, we do not apply
    	// ansi coloring on dumb terminals.
    	IsTerminal = func() bool {
    		return !color.NoColor
    	}
    
    	Bold = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.Bold).SprintfFunc()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 17:57:52 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. cmd/testdata/xl-meta-merge.zip

    GªMVaTfkô[ngª3û<G{ cZPKH $\m}„Wiß6Okª²3ñ Dce¼]xÕpÅèÔÿÜ)Yò²]Õâ ôM¾aR^G`hwf Dc~°ì-@m@oLï0ó ejrŠkì|KlAmbªßsery ¦ ö !WU 6c¼ /܈fã^E²{¨ÙaDskòIª-}jGhk¼ixÚiJ}VuIZxž¦x^KiÕc¾NñnvwI²1 ñAª^U¼in[Äãvh¢ C\qtO§ºdTÜRu®©£os\qlu2yTA³ì_{•mjK^kRèofÈ iTû 5è %Öu_o^²^eußY|}j ]}¢ Añ ®°» ’~tNNI¨1¯uñPInu mXéë~hãûÕB æpmŸÔ^zjHW`^ys„s\Wxiìô²u}DRWt®kñq¯kSpim»SávyW |ãNsstÜxxböÌ"dI<—7l?‘öFkZPmA_eTܪIpqrBIºUISTñ FI`ãwdV +c@ò;Ö9Fkxxgi\_†à)[x_sKrS âž_SR]ÅýòyiZp˜¤·wAºûy`¼NqËB€V\mˆrKÎpiUsñh^†w__ì ê 05ê‹az‰ tÑ÷ôÕ7jsœ¢qnªK÷4sJDmt¸[Gt©z· JªñNneåP¾~NowGsX...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  6. CREDITS

    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.
    
    ================================================================
    
    github.com/muesli/ansi
    https://github.com/muesli/ansi
    ----------------------------------------------------------------
    MIT License
    
    Copyright (c) 2021 Christian Muehlhaeuser
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
Back to top