Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for Colon (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/util/network/ip_test.go

    		{
    			name:     "IPv6 missing brackets",
    			input:    "2001:db8::20:9080",
    			expected: "",
    			errStr:   "address 2001:db8::20:9080: too many colons in address",
    			lookup:   nil,
    		},
    		{
    			name:     "Colon, but no port",
    			input:    "localhost:",
    			expected: "",
    			errStr:   "",
    			lookup:   nil,
    		},
    		{
    			name:     "Missing port",
    			input:    "localhost",
    			expected: "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  6. test/codegen/README

    fail), and then re-running the tests using the devel toolchain.
    
    
    - Regexps comments syntax
    
    Instructions to match are specified inside plain comments that start
    with an architecture tag, followed by a colon and a quoted Go-style
    regexp to be matched. For example, the following test:
    
      func Sqrt(x float64) float64 {
      	   // amd64:"SQRTSD"
      	   // arm64:"FSQRTD"
      	   return math.Sqrt(x)
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/base/timings.go

    	t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
    }
    
    // Start marks the beginning of a new phase and implicitly stops the previous phase.
    // The phase name is the colon-separated concatenation of the labels.
    func (t *Timings) Start(labels ...string) {
    	t.append(labels, true)
    }
    
    // Stop marks the end of a phase and implicitly starts a new phase.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/net/netip/slow_test.go

    	}
    
    	return AddrFrom16(ret).WithZone(zone), nil
    }
    
    // normalizeIPv6Slow expands s, which is assumed to be an IPv6
    // address, to its canonical text form.
    //
    // The canonical form of an IPv6 address is 8 colon-separated fields,
    // where each field should be a hex value from 0 to ffff. This
    // function does not verify the contents of each field.
    //
    // This function performs two transformations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/html/template/css.go

    	//     the end of the declaration, while observing the rules for
    	//     matching pairs of (), [], {}, "", and '', and correctly handling
    	//     escapes. For example, a malformed declaration may be missing a
    	//     property, colon (:) or value.
    	// So we need to make sure that values do not have mismatched bracket
    	// or quote characters to prevent the browser from restarting parsing
    	// inside a string that might embed JavaScript source.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs_test.go

    var govcsErrors = []struct {
    	s   string
    	err string
    }{
    	{`,`, `empty entry in GOVCS`},
    	{`,x`, `empty entry in GOVCS`},
    	{`x,`, `malformed entry in GOVCS (missing colon): "x"`},
    	{`x:y,`, `empty entry in GOVCS`},
    	{`x`, `malformed entry in GOVCS (missing colon): "x"`},
    	{`x:`, `empty VCS list in GOVCS: "x:"`},
    	{`x:|`, `empty VCS name in GOVCS: "x:|"`},
    	{`x:y|`, `empty VCS name in GOVCS: "x:y|"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
Back to top