Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Ansi (0.83 sec)

  1. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        public interface Consumer {
            void apply(Ansi ansi);
        }
    
        public static boolean isEnabled() {
            return org.apache.maven.jline.MessageUtils.isColorEnabled() && org.jline.jansi.Ansi.isEnabled();
        }
    
        public static void setEnabled(final boolean flag) {
            org.jline.jansi.Ansi.setEnabled(flag);
        }
    
        public static Ansi ansi() {
            if (isEnabled()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

            private final Ansi.Color ansiColor;
    
            public BrightForegroundColor(Ansi.Color ansiColor) {
                this.ansiColor = ansiColor;
            }
    
            @Override
            public void on(Ansi ansi) {
                ansi.fgBright(ansiColor);
            }
    
            @Override
            public void off(Ansi ansi) {
                ansi.fg(DEFAULT);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/crypto/aes/block.go

    // license that can be found in the LICENSE file.
    
    // This Go implementation is derived in part from the reference
    // ANSI C implementation, which carries the following notice:
    //
    //	rijndael-alg-fst.c
    //
    //	@version 3.0 (December 2000)
    //
    //	Optimised ANSI C code for the Rijndael cipher (now AES)
    //
    //	@author Vincent Rijmen <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. go.mod

    	github.com/charmbracelet/bubbles v0.18.0 // indirect
    	github.com/charmbracelet/bubbletea v0.26.4 // indirect
    	github.com/charmbracelet/lipgloss v0.11.0 // indirect
    	github.com/charmbracelet/x/ansi v0.1.2 // indirect
    	github.com/charmbracelet/x/input v0.1.2 // indirect
    	github.com/charmbracelet/x/term v0.1.1 // indirect
    	github.com/charmbracelet/x/windows v0.1.2 // indirect
    	github.com/coreos/go-semver v0.3.1 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. 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
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    //
    //	ecdsa-with-SHA256 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    //		us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 2 }
    //
    //	ecdsa-with-SHA384 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    //		us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 3 }
    //
    //	ecdsa-with-SHA512 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    //		us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 4 }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/security.go

    	re(`-O`),
    	re(`-O([^@\-].*)`),
    	re(`-W`),
    	re(`-W([^@,]+)`), // -Wall but not -Wa,-foo.
    	re(`-Wa,-mbig-obj`),
    	re(`-Wp,-D([A-Za-z_][A-Za-z0-9_]*)(=[^@,\-]*)?`),
    	re(`-Wp,-U([A-Za-z_][A-Za-z0-9_]*)`),
    	re(`-ansi`),
    	re(`-f(no-)?asynchronous-unwind-tables`),
    	re(`-f(no-)?blocks`),
    	re(`-f(no-)builtin-[a-zA-Z0-9_]*`),
    	re(`-f(no-)?common`),
    	re(`-f(no-)?constant-cfstrings`),
    	re(`-fdebug-prefix-map=([^@]+)=([^@]+)`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. go.sum

    github.com/charmbracelet/lipgloss v0.11.0/go.mod h1:1UdRTH9gYgpcdNN5oBtjbu/IzNKtzVtb7sqN1t9LNn8=
    github.com/charmbracelet/x/ansi v0.1.2 h1:6+LR39uG8DE6zAmbu023YlqjJHkYXDF1z36ZwzO4xZY=
    github.com/charmbracelet/x/ansi v0.1.2/go.mod h1:dk73KoMTT5AX5BsX0KrqhsTqAnhZZoCBjs7dGWp4Ktw=
    github.com/charmbracelet/x/input v0.1.2 h1:QJAZr33eOhDowkkEQ24rsJy4Llxlm+fRDf/cQrmqJa0=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa.go

    // algorithms, as long as an [elliptic.Curve] returned by [elliptic.P224],
    // [elliptic.P256], [elliptic.P384], or [elliptic.P521] is used.
    package ecdsa
    
    // [FIPS 186-4] references ANSI X9.62-2005 for the bulk of the ECDSA algorithm.
    // That standard is not freely available, which is a problem in an open source
    // implementation, because not only the implementer, but also any maintainer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. gradle/verification-metadata.xml

                <pgp value="CB3808E03CD602A6DC5B882552931F4B72B4F54C"/>
             </artifact>
          </component>
          <component group="net.rubygrapefruit" name="ansi-control-sequence-util" version="0.3">
             <artifact name="ansi-control-sequence-util-0.3.jar">
                <pgp value="5B131E826582CF79510DAA11CD3E539F208832D0"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top