Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for Colon (0.05 sec)

  1. docs/en/docs/python-types.md

    #### List
    
    For example, let's define a variable to be a `list` of `str`.
    
    === "Python 3.9+"
    
        Declare the variable, with the same colon (`:`) syntax.
    
        As the type, put `list`.
    
        As the list is a type that contains some internal types, you put them in square brackets:
    
        ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    			return errTagSpace
    		}
    		// Skip leading space.
    		i := 0
    		for i < len(tag) && tag[i] == ' ' {
    			i++
    		}
    		tag = tag[i:]
    		if tag == "" {
    			break
    		}
    
    		// Scan to colon. A space, a quote or a control character is a syntax error.
    		// Strictly speaking, control chars include the range [0x7f, 0x9f], not just
    		// [0x00, 0x1f], but in practice, we ignore the multi-byte control characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. hack/make-rules/test.sh

    # coverage mode.
    KUBE_COVERPROCS=${KUBE_COVERPROCS:-4}
    # use KUBE_RACE="" to disable the race detector
    # this is defaulted to "-race" in make test as well
    # NOTE: DO NOT ADD A COLON HERE. KUBE_RACE="" is meaningful!
    KUBE_RACE=${KUBE_RACE-"-race"}
    # Set to the goveralls binary path to report coverage results to Coveralls.io.
    KUBE_GOVERALLS_BIN=${KUBE_GOVERALLS_BIN:-}
    # once we have multiple group supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    // with the provided minimum serialized size that can fit into a single request.
    func estimateMaxAdditionalPropertiesFromMinSize(minSize int64) int64 {
    	// 2 bytes for key + "" + colon + comma + smallest possible value, realistically the actual keys
    	// will all vary in length
    	keyValuePairSize := minSize + 6
    	// subtract 2 to account for { and }
    	return (maxRequestSizeBytes - 2) / keyValuePairSize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This error indicates that your module notation in a TOML version catalog is incorrect.
    When you use the `module` notation in a TOML, it must consist of 2 elements, the `group` and the `name` of the module, separated by a colon (`:`).
    
    For example:
    
    ```toml
    [libraries]
    groovy = { module="org.codehaus.groovy:groovy", version="3.0.5" }
    ```
    
    [[toml_syntax_error]]
    == Invalid TOML definition
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/util/cdi/cdi.go

    // A device name may contain the following ASCII characters:
    //   - upper- and lowercase letters ('A'-'Z', 'a'-'z')
    //   - digits ('0'-'9')
    //   - underscore, dash, dot, colon ('_', '-', '.', ':')
    func validateDeviceName(name string) error {
    	if name == "" {
    		return fmt.Errorf("invalid (empty) device name")
    	}
    	if !isAlphaNumeric(rune(name[0])) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/crypto/x509/cert_pool.go

    // SSL_CERT_DIR can be used to override the system default locations for the SSL
    // certificate file and SSL certificate files directory, respectively. The
    // latter can be a colon-separated list.
    //
    // Any mutations to the returned pool are not written to disk and do not affect
    // any other pool returned by SystemCertPool.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

        fun clearHeaders() =
          apply {
            headers = Headers.Builder()
          }
    
        /**
         * Adds [header] as an HTTP header. For well-formed HTTP [header] should contain a name followed
         * by a colon and a value.
         */
        fun addHeader(header: String) =
          apply {
            headers.add(header)
          }
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/time/example_test.go

    	fmt.Println("Same, in UTC:", t.UTC().Format(time.UnixDate))
    
    	fmt.Println("in Shanghai with seconds:", t.In(tz).Format("2006-01-02T15:04:05 -070000"))
    
    	fmt.Println("in Shanghai with colon seconds:", t.In(tz).Format("2006-01-02T15:04:05 -07:00:00"))
    
    	// The rest of this function demonstrates the properties of the
    	// layout string used in the format.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/link.go

    )
    
    func parseLinkRefDef(p buildState, s string) (int, bool) {
    	// “A link reference definition consists of a link label,
    	// optionally preceded by up to three spaces of indentation,
    	// followed by a colon (:),
    	// optional spaces or tabs (including up to one line ending),
    	// a link destination,
    	// optional spaces or tabs (including up to one line ending),
    	// and an optional link title,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top