Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for jansi (0.03 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. apache-maven/pom.xml

            <executions>
              <execution>
                <id>unpack-jansi-native</id>
                <goals>
                  <goal>unpack-dependencies</goal>
                </goals>
                <configuration>
                  <includeArtifactIds>jansi</includeArtifactIds>
                  <includes>org/fusesource/jansi/internal/native/Windows/**</includes>
                </configuration>
              </execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind"
        val jakartaActivation = "com.sun.activation:jakarta.activation"
        val jakartaXmlBind = "jakarta.xml.bind:jakarta.xml.bind-api"
        val jansi = "org.fusesource.jansi:jansi"
        val jatl = "com.googlecode.jatl:jatl"
        val javaPoet = "com.squareup:javapoet"
        val jaxbCore = "com.sun.xml.bind:jaxb-core"
        val jaxbImpl = "com.sun.xml.bind:jaxb-impl"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. gradle/verification-metadata.xml

                <pgp value="13AC2213964ABE1D1C147C0E1939A2520BAB1D90"/>
             </artifact>
          </component>
          <component group="org.fusesource.jansi" name="jansi" version="1.18">
             <artifact name="jansi-1.18.jar">
                <pgp value="EA23DB1360D9029481E7F2EFECDFEA3CB4493B94"/>
             </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)
  5. 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)
  6. src/cmd/cgo/gcc.go

    			i+1, i+1, n.C,
    		)
    	}
    	fmt.Fprintf(&b, "#line 1 \"completed\"\n"+
    		"int __cgo__1 = __cgo__2;\n")
    
    	// We need to parse the output from this gcc command, so ensure that it
    	// doesn't have any ANSI escape sequences in it. (TERM=dumb is
    	// insufficient; if the user specifies CGO_CFLAGS=-fdiagnostics-color,
    	// GCC will ignore TERM, and GCC can also be configured at compile-time
    	// to ignore TERM.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top