Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 707 for separators (0.33 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                    output.count("property is present in consumer!"),
                    equalTo(1)
                )
            }
        }
    
        @Test
        fun `can use type-safe accessors for applied plugins with CRLF line separators`() {
    
            withKotlinDslPlugin()
    
            withPrecompiledKotlinScript(
                "my-java-library.gradle.kts",
                replaceLineSeparatorsOf(
                    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  2. src/math/big/ratconv.go

    		err = nil
    	}
    	if err == nil && !hasDigits {
    		err = errNoDigits
    	}
    	if err == nil {
    		exp, err = strconv.ParseInt(string(digits), 10, 64)
    	}
    	// other errors take precedence over invalid separators
    	if err == nil && (invalSep || prev == '_') {
    		err = errInvalSep
    	}
    
    	return
    }
    
    // String returns a string representation of x in the form "a/b" (even if b == 1).
    func (x *Rat) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. src/html/template/transition.go

    func tCSS(c context, s []byte) (context, int) {
    	// CSS quoted strings are almost never used except for:
    	// (1) URLs as in background: "/foo.png"
    	// (2) Multiword font-names as in font-family: "Times New Roman"
    	// (3) List separators in content values as in inline-lists:
    	//    <style>
    	//    ul.inlineList { list-style: none; padding:0 }
    	//    ul.inlineList > li { display: inline }
    	//    ul.inlineList > li:before { content: ", " }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

    /**
     * <p>
     * Generic implementation of version comparison.
     * </p>
     * <p>
     * Features:
     * <ul>
     * <li>mixing of '<code>-</code>' (hyphen) and '<code>.</code>' (dot) separators,</li>
     * <li>transition between characters and digits also constitutes a separator:
     *     <code>1.0alpha1 =&gt; [1, [alpha, 1]]</code></li>
     * <li>unlimited number of version components,</li>
     * <li>version components in the text can be digits or strings,</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/scanner.go

    // the index (relative to the literal start) of a digit >= base
    // in *invalid, if *invalid < 0.
    // digits returns a bitset describing whether the sequence contained
    // digits (bit 0 is set), or separators '_' (bit 1 is set).
    func (s *scanner) digits(base int, invalid *int) (digsep int) {
    	if base <= 10 {
    		max := rune('0' + base)
    		for isDecimal(s.ch) || s.ch == '_' {
    			ds := 1
    			if s.ch == '_' {
    				ds = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    //
    // This option corresponds to the VerifyDnsLength flag in UTS #46.
    func VerifyDNSLength(verify bool) Option {
    	return func(o *options) { o.verifyDNSLength = verify }
    }
    
    // RemoveLeadingDots removes leading label separators. Leading runes that map to
    // dots, such as U+3002 IDEOGRAPHIC FULL STOP, are removed as well.
    func RemoveLeadingDots(remove bool) Option {
    	return func(o *options) { o.removeLeadingDots = remove }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    		assert.Equal(t, responseBody, string(testConnConstructor.mockConn.written), "extra data written to net.Conn")
    	})
    
    	// Tolerate header separators of \n instead of \r\n, and extra data after response headers should be sent to net.Conn.
    	t.Run("simple-tolerate-lf", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    |1.2
    |3
    
    |1_alpha
    |1
    |alpha
    
    |abc
    |abc
    |<none>
    
    |1.2b3
    |1.2
    |b3
    
    |abc.1+3
    |abc.1
    |3
    
    |b1-2-3.3
    |b
    |1-2-3.3
    |===
    
    As you can see separators are any of the `.`, `-`, `_`, `+` characters, plus the empty string when a numeric and a non-numeric part of the version are next to each-other.
    
    When resolving the conflict between competing versions, the following logic applies:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  9. src/text/scanner/scanner.go

    // the first invalid digit >= base in *invalid if *invalid == 0.
    // digits returns the first rune that is not part of the sequence
    // anymore, and a bitset describing whether the sequence contained
    // digits (bit 0 is set), or separators '_' (bit 1 is set).
    func (s *Scanner) digits(ch0 rune, base int, invalid *rune) (ch rune, digsep int) {
    	ch = ch0
    	if base <= 10 {
    		max := rune('0' + base)
    		for isDecimal(ch) || ch == '_' {
    			ds := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner_test.go

    		{FloatLit, "0x1234PAB", "0x1234P AB", "exponent has no digits"},
    		{FloatLit, "0x1.2p1a", "0x1.2p1 a", ""},
    
    		{ImagLit, "0xf00.bap+12i", "0xf00.bap+12i", ""},
    
    		// separators
    		{IntLit, "0b_1000_0001", "0b_1000_0001", ""},
    		{IntLit, "0o_600", "0o_600", ""},
    		{IntLit, "0_466", "0_466", ""},
    		{IntLit, "1_000", "1_000", ""},
    		{FloatLit, "1_000.000_1", "1_000.000_1", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
Back to top