Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 371 for separators (0.57 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    		// We disallow some shell special characters: " ' * < > ? ` |
    		// (Note that some of those are disallowed by the Windows file system as well.)
    		// We also disallow path separators / : and \ (fileNameOK is only called on path element characters).
    		// We allow spaces (U+0020) in file names.
    		const allowed = "!#$%&()+,-.=@[]^_{}~ "
    		if '0' <= r && r <= '9' || 'A' <= r && r <= 'Z' || 'a' <= r && r <= 'z' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. hack/lib/golang.sh

    readonly KUBE_NODE_BINARIES_WIN=("${KUBE_NODE_BINARIES[@]/%/.exe}")
    
    # ------------
    # NOTE: All functions that return lists should use newlines.
    # bash functions can't return arrays, and spaces are tricky, so newline
    # separators are the preferred pattern.
    # To transform a string of newline-separated items to an array, use kube::util::read-array:
    # kube::util::read-array FOO < <(kube::golang::dups a b c a)
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    When declaring aliases, it's worth noting that any of the `-`, `_` and `.` characters can be used as separators, but the generated catalog will have all normalized to `.`:
    for example `foo-bar` as an alias is converted to `foo.bar` automatically.
    
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. internal/config/config.go

    	IdentityTLSSubSys,
    	IdentityPluginSubSys,
    	HealSubSys,
    	ScannerSubSys,
    	SubnetSubSys,
    	CallhomeSubSys,
    	DriveSubSys,
    	ILMSubSys,
    	BatchSubSys,
    	BrowserSubSys,
    )
    
    // Constant separators
    const (
    	SubSystemSeparator = madmin.SubSystemSeparator
    	KvSeparator        = madmin.KvSeparator
    	KvSpaceSeparator   = madmin.KvSpaceSeparator
    	KvComment          = madmin.KvComment
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  6. src/time/format.go

    	stdArgShift       = 16                 // extra argument in high bits, above low stdArgShift
    	stdSeparatorShift = 28                 // extra argument in high 4 bits for fractional second separators
    	stdMask           = 1<<stdArgShift - 1 // mask out argument
    )
    
    // std0x records the std values for "01", "02", ..., "06".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	                    | "CONNECT"                ; Section 9.9
    	                    | extension-method
    	   extension-method = token
    	     token          = 1*<any CHAR except CTLs or separators>
    	*/
    	return len(method) > 0 && strings.IndexFunc(method, isNotToken) == -1
    }
    
    // NewRequest wraps [NewRequestWithContext] using [context.Background].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    // Command returns the [Cmd] struct to execute the named program with
    // the given arguments.
    //
    // It sets only the Path and Args in the returned structure.
    //
    // If name contains no path separators, Command uses [LookPath] to
    // resolve name to a complete path if possible. Otherwise it uses name
    // directly as Path.
    //
    // The returned Cmd's Args field is constructed from the command name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. pkg/apis/storage/validation/validation_test.go

    				Name:         "io.kubernetes.storage.csi.driver/",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// Invalid separators in driver name
    		ObjectMeta: metav1.ObjectMeta{Name: "foo5"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io/kubernetes/storage/csi~driver",
    				NodeID:       nodeID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
Back to top