Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 150 for Colon (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/xml/XmlValidation.java

     * limitations under the License.
     */
    
    package org.gradle.internal.xml;
    
    public class XmlValidation {
        public static boolean isValidXmlName(CharSequence name) {
            // element names can only contain 0 or 1 colon
            // See http://www.w3.org/TR/2004/REC-xml-names11-20040204/#Conformance
            // If the name has a prefix, evaluate both prefix and name
            int pos = 0;
            int nsPos = 0;
            int nsCount = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 22 14:56:07 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  2. src/internal/filepathlite/path_windows.go

    		// Path rooted in the current drive.
    		return false
    	}
    	if stringslite.IndexByte(path, ':') >= 0 {
    		// Colons are only valid when marking a drive letter ("C:foo").
    		// Rejecting any path with a colon is conservative but safe.
    		return false
    	}
    	hasDots := false // contains . or .. path elements
    	for p := path; p != ""; {
    		var part string
    		part, p, _ = cutPath(p)
    		if part == "." || part == ".." {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

     * of Android's private InetAddress#isNumeric API.
     *
     * This matches IPv6 addresses as a hex string containing at least one colon, and possibly
     * including dots after the first colon. It matches IPv4 addresses as strings containing only
     * decimal digits and dots. This pattern matches strings like "a:.23" and "54" that are neither IP
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <!--<module name="WhitespaceAround">-->
                <!-- everything except { and } -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/govcs.txt

    # bad patterns are reported (for more bad patterns, see TestGOVCSErrors)
    env GOVCS='git'
    ! go get github.com/google/go-cmp
    stderr '^go: github.com/google/go-cmp: malformed entry in GOVCS \(missing colon\): "git"$'
    
    env GOVCS=github.com:hg,github.com:git
    ! go get github.com/google/go-cmp
    stderr '^go: github.com/google/go-cmp: unreachable pattern in GOVCS: "github.com:git" after "github.com:hg"$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/go/build/doc.go

    // Go tree. The default path is the value of the GOPATH environment
    // variable, interpreted as a path list appropriate to the operating system
    // (on Unix, the variable is a colon-separated string;
    // on Windows, a semicolon-separated string;
    // on Plan 9, a list).
    //
    // Each directory listed in the Go path must have a prescribed structure:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

            .add("foo : bak") // Name trailing whitespace is trimmed.
            .add("\tkey\t:\tvalue\t") // '\t' also counts as whitespace
            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
            .build()
        assertThat(headers.values("foo")).containsExactly("bar", "baz", "bak")
        assertThat(headers.values("key")).containsExactly("value")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/net/netip/fuzz_test.go

    	// IPv6 with invalid embedded IPv4.
    	"::ffff:192.168.140.bad",
    	// IPv6 with multiple ellipsis ::.
    	"fe80::1::1",
    	// IPv6 with invalid non hex/colon character.
    	"fe80:1?:1",
    	// IPv6 with truncated bytes after single colon.
    	"fe80:",
    	// AddrPort strings.
    	"1.2.3.4:51820",
    	"[fd7a:115c:a1e0:ab12:4843:cd96:626b:430b]:80",
    	"[::ffff:c000:0280]:65535",
    	"[::ffff:c000:0280%eth0]:1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Headers.kt

                // broken SPDY versions of the response cache).
                addLenient("", line.substring(1)) // Empty header name.
              }
              else -> {
                // No header name.
                addLenient("", line)
              }
            }
          }
    
        /** Add an header line containing a field name, a literal colon, and a value. */
        fun add(line: String) =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. test-site/activator-launch-1.3.2.jar

    productElement(int); public final scala.collection.Iterator productIterator(); public void $colon$colon(Object, List); } scala/collection/immutable/$colon$colon$.class package scala.collection.immutable; public final synchronized class $colon$colon$ implements scala.Serializable { public static final $colon$colon$ MODULE$; public static void <clinit>(); public final String toString(); private void $colon$colon$(); } scala/collection/generic/TraversableForwarder.class package scala.collection.generic;...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top