Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,400 for bline (0.37 sec)

  1. docs/en/docs/css/termynal.css

        content: attr(data-ty-cursor);
        font-family: monospace;
        margin-left: 0.5em;
        -webkit-animation: blink 1s infinite;
                animation: blink 1s infinite;
    }
    
    
    /* Cursor animation */
    
    @-webkit-keyframes blink {
        50% {
            opacity: 0;
        }
    }
    
    @keyframes blink {
        50% {
            opacity: 0;
        }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

                    public void badTest() {
                        beBad();
                    }
    
                    @Test
                    public void printTest() {
                        System.out.println("line 1\\nline 2");
                        System.out.println("line 3");
                    }
    
                    @Test
                    ${ignoreOrDisabledAnnotation}
                    public void ignoredTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGConsoleLoggingIntegrationTest.groovy

                        println "line 1\\nline 2"
                        println "line 3"
                    }
                }
            """
    
            when:
            args "-q"
            fails "test"
    
            then:
            outputContains("""
    Gradle test > org.gradle.TestNGStandardOutputTest.printTest STANDARD_OUT
        line 1
        line 2
        line 3
            """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. security/pkg/pki/testdata/cert-chain-trailing-line.pem

    sschepens <******@****.***> 1717506007 -0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

            anyOf(group("org.slf4j"), module("py4j"))                                                                      | anyOf(group("org.slf4j"), module("py4j"), moduleIdSet(["org.jboss.netty", "netty"], ["jline", "jline"]))              | anyOf(group("org.slf4j"), module("py4j"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

            then:
            output == testOut
    
            where:
            description | testIn | testOut
            "line comment" | "// Comment on first line\nAnother line" | "\nAnother line"
            "inline comment" | "/* inline comment at the start */of the line" | " of the line"
            "line continuation" | "${BN} at the start of the content" | " at the start of the content"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. maven-slf4j-provider/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-jline</artifactId>
        </dependency>
    
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-api</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/util/LineBufferingOutputStreamTest.groovy

            outputStream.write(TextUtil.toPlatformLineSeparators("line 1\nline 2\n").getBytes())
    
            then:
            1 * action.text(TextUtil.toPlatformLineSeparators("line 1\n"))
            1 * action.text(TextUtil.toPlatformLineSeparators("line 2\n"))
        }
    
        def buffersTextUntilEndOfLineReached() {
            when:
            final String separator = "-"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    	if printBlank {
    		p.print(blank)
    	}
    	xline := p.pos.Line // before the operator (it may be on the next line!)
    	yline := p.lineFor(x.Y.Pos())
    	p.setPos(x.OpPos)
    	p.print(x.Op)
    	if xline != yline && xline > 0 && yline > 0 {
    		// at least one line break, but respect an extra empty line
    		// in the source
    		if p.linebreak(yline, 1, ws, true) > 0 {
    			ws = ignore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. src/log/log_test.go

    	} else {
    		Println("hello", 23, "world")
    	}
    	line := buf.String()
    	line = line[0 : len(line)-1]
    	pattern = "^" + pattern + "hello 23 world$"
    	matched, err := regexp.MatchString(pattern, line)
    	if err != nil {
    		t.Fatal("pattern did not compile:", err)
    	}
    	if !matched {
    		t.Errorf("log output should match %q is %q", pattern, line)
    	}
    	SetOutput(os.Stderr)
    }
    
    func TestDefault(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top