Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for Ansi (0.04 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/RedrawableLabel.java

     */
    
    package org.gradle.internal.logging.console;
    
    /**
     * This label have the concept of been drawn on screen.
     */
    public interface RedrawableLabel extends Label, StyledLabel {
        void redraw(AnsiContext ansi);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 826 bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

        assertThat("Thursday, 01-Jan-70 00:00:00 GMT".toHttpDateOrNull()!!.time).isEqualTo(0L)
        assertThat("Friday, 06-Jun-14 12:30:30 GMT".toHttpDateOrNull()!!.time).isEqualTo(1402057830000L)
    
        // ANSI C's asctime(): should use GMT, not platform default.
        assertThat("Thu Jan 1 00:00:00 1970".toHttpDateOrNull()!!.time).isEqualTo(0L)
        assertThat("Fri Jun 6 12:30:30 2014".toHttpDateOrNull()!!.time).isEqualTo(1402057830000L)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "engines": {
            "node": ">=10"
          },
          "funding": {
            "url": "https://github.com/chalk/slice-ansi?sponsor=1"
          }
        },
        "node_modules/slice-ansi/node_modules/ansi-styles": {
          "version": "4.3.0",
          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
          "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

         *
         * Assumes that a console is attached to stderr.
         *
         * <p>Removes System.out and System.err as logging destinations, if present, as a side-effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/JansiEndUserIntegrationTest.groovy

                    testImplementation 'junit:junit:4.13'
                }
            """
    
            file('src/test/java/org/gradle/JansiTest.java') << """
                package org.gradle;
    
                import org.fusesource.jansi.Ansi;
    
                import org.junit.Test;
                import static org.junit.Assert.assertNull;
                import static org.junit.Assert.assertEquals;
    
                public class JansiTest {
                    @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 18:12:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiStorageLocator.java

                return new JansiStorage(jansiLibrary, targetLibFile);
            }
    
            return null;
        }
    
        private File makeVersionSpecificDir(File storageDir) {
            String jansiVersion = org.fusesource.jansi.Ansi.class.getPackage().getImplementationVersion();
            return new File(storageDir, "jansi/" + jansiVersion);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/printers/warningprinter.go

    	opts WarningPrinterOptions
    }
    
    // WarningPrinterOptions controls the behavior of a WarningPrinter constructed using NewWarningPrinter()
    type WarningPrinterOptions struct {
    	// Color indicates that warning output can include ANSI color codes
    	Color bool
    }
    
    // NewWarningPrinter returns an implementation of warningPrinter that outputs warnings to the specified writer.
    func NewWarningPrinter(out io.Writer, opts WarningPrinterOptions) *WarningPrinter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 11:10:15 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/ConsoleOutput.java

         */
        Auto,
        /**
         * Enable color and rich output, regardless of whether the current process is attached to a console or not.
         * When not attached to a console, the color and rich output is encoded using ANSI control characters.
         */
        Rich,
        /**
         * Enable color and rich output like Rich, but output more detailed message.
         *
         * @since 4.3
         */
        Verbose
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/NativePlatformConsoleDetector.java

        public NativePlatformConsoleDetector(Terminals terminals) {
            this.terminals = terminals;
        }
    
        @Override
        public ConsoleMetaData getConsole() {
            // Dumb terminal doesn't support ANSI control codes.
            // TODO - remove this when we use Terminal rather than JAnsi to render to console
            String term = System.getenv("TERM");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. internal/logger/utils.go

    package logger
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"net/http"
    	"regexp"
    	"runtime"
    
    	"github.com/minio/minio/internal/color"
    )
    
    var ansiRE = regexp.MustCompile("(\x1b[^m]*m)")
    
    // Print ANSI Control escape
    func ansiEscape(format string, args ...interface{}) {
    	Esc := "\x1b"
    	fmt.Printf("%s%s", Esc, fmt.Sprintf(format, args...))
    }
    
    func ansiMoveRight(n int) {
    	if runtime.GOOS == "windows" {
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 04 23:10:08 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top