Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 155 for _Colon (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    [[sec:project_path]]
    == Multi-Project path
    
    A project path has the following pattern: it starts with an optional colon, which denotes the root project.
    
    The root project, `:`, is the only project in a path not specified by its name.
    
    The rest of a project path is a colon-separated sequence of project names, where the next project is a subproject of the previous project:
    
    [source]
    ----
    :sub-project-1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/crypto/x509/root_unix_test.go

    	if g, w := len(certDirs), len(rootPEMs); g != w {
    		t.Fatalf("Failed sanity check: len(certsDir)=%d is not equal to len(rootsPEMS)=%d", g, w)
    	}
    
    	// Now finally concatenate them with a colon.
    	colonConcatCertDirs := strings.Join(certDirs, ":")
    	os.Setenv(certDirEnv, colonConcatCertDirs)
    	gotPool, err := loadSystemRoots()
    	if err != nil {
    		t.Fatalf("Failed to load system roots: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. internal/handlers/proxy.go

    	// e.g. Forwarded: for=192.0.2.60;proto=https;by=203.0.113.43
    	forwarded = http.CanonicalHeaderKey("Forwarded")
    	// Allows for a sub-match of the first value after 'for=' to the next
    	// comma, semi-colon or space. The match is case-insensitive.
    	forRegex = regexp.MustCompile(`(?i)(?:for=)([^(;|,| )]+)(.*)`)
    	// Allows for a sub-match for the first instance of scheme (http|https)
    	// prefixed by 'proto='. The match is case-insensitive.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	colon := strings.Index(arg, ":")
    	if colon < 0 {
    		return "", arg
    	}
    	openparen := strings.Index(arg, "(")
    	if openparen < 0 {
    		log.Fatalf("splitNameExpr(%q): colon but no open parens", arg)
    	}
    	if colon > openparen {
    		// colon is inside the parens, such as in "(Foo x:(Bar))".
    		return "", arg
    	}
    	return arg[:colon], arg[colon+1:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top