Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for xxxxx01 (0.08 sec)

  1. src/strings/strings_test.go

    	// 2-byte needle
    	{"xxxxxx", "01", false},
    	{"01xxxx", "01", true},
    	{"xx01xx", "01", true},
    	{"xxxx01", "01", true},
    	{"01xxxxx"[1:], "01", false},
    	{"xxxxx01"[:6], "01", false},
    	// 3-byte needle
    	{"xxxxxxx", "012", false},
    	{"012xxxx", "012", true},
    	{"xx012xx", "012", true},
    	{"xxxx012", "012", true},
    	{"012xxxxx"[1:], "012", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. configure.py

      environ_cp[var_name] = str(var)
    
    
    def convert_version_to_int(version):
      """Convert a version number to a integer that can be used to compare.
    
      Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The
      'xxxxx' part, for instance 'homebrew' on OS/X, is ignored.
    
      Args:
        version: a version to be converted
    
      Returns:
        An integer if converted successfully, otherwise return None.
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		// point
    		return -1, syscall.ENOENT
    	}
    	n = copy(buf, []byte(s))
    
    	return n, nil
    }
    
    // GUIDFromString parses a string in the form of
    // "{XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}" into a GUID.
    func GUIDFromString(str string) (GUID, error) {
    	guid := GUID{}
    	str16, err := syscall.UTF16PtrFromString(str)
    	if err != nil {
    		return guid, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

    # Use to increase verbosity on particular files, e.g. LOG_SPEC=token_controller*=5,other_controller*=4
    LOG_SPEC=${LOG_SPEC:-""}
    LOG_DIR=${LOG_DIR:-"/tmp"}
    TMP_DIR=${TMP_DIR:-$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")}
    CONTAINER_RUNTIME_ENDPOINT=${CONTAINER_RUNTIME_ENDPOINT:-"unix:///run/containerd/containerd.sock"}
    RUNTIME_REQUEST_TIMEOUT=${RUNTIME_REQUEST_TIMEOUT:-"2m"}
    IMAGE_SERVICE_ENDPOINT=${IMAGE_SERVICE_ENDPOINT:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    		},
    		{
    			name: "nil User",
    			url: &URL{
    				Scheme: "http",
    				Host:   "host.tld",
    				Path:   "this:that",
    				User:   UserPassword("", "password"),
    			},
    			want: "http://:xxxxx@host.tld/this:that",
    		},
    		{
    			name: "blank Username, blank Password",
    			url: &URL{
    				Scheme: "http",
    				Host:   "host.tld",
    				Path:   "this:that",
    			},
    			want: "http://host.tld/this:that",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top