Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for 01xxxx (0.26 sec)

  1. 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)
  2. src/encoding/json/decode.go

    			panic(phasePanicMsg)
    		}
    		n, err := d.convertNumber(string(item))
    		if err != nil {
    			d.saveError(err)
    		}
    		return n
    	}
    }
    
    // getu4 decodes \uXXXX from the beginning of s, returning the hex value,
    // or it returns -1.
    func getu4(s []byte) rune {
    	if len(s) < 6 || s[0] != '\\' || s[1] != 'u' {
    		return -1
    	}
    	var r rune
    	for _, c := range s[2:6] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. src/regexp/all_test.go

    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		if !re.MatchString(x) {
    			b.Fatalf("no match!")
    		}
    	}
    }
    
    func BenchmarkMatchClass(b *testing.B) {
    	b.StopTimer()
    	x := strings.Repeat("xxxx", 20) + "w"
    	re := MustCompile("[abcdw]")
    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		if !re.MatchString(x) {
    			b.Fatalf("no match!")
    		}
    	}
    }
    
    func BenchmarkMatchClass_InRange(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pkg/volume/util/util.go

    // the k8s plugin suffix of original mount path.
    func HasMountRefs(mountPath string, mountRefs []string) bool {
    	// A mountPath typically is like
    	//   /var/lib/kubelet/plugins/kubernetes.io/some-plugin/mounts/volume-XXXX
    	// Mount refs can look like
    	//   /home/somewhere/var/lib/kubelet/plugins/kubernetes.io/some-plugin/...
    	// but if /var/lib/kubelet is mounted to a different device a ref might be like
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    // it is encoded in logical instructions with 3 bitfields
    // N (1 bit) : R (6 bits) : S (6 bits), where
    // N=1           -- period=64
    // N=0, S=0xxxxx -- period=32
    // N=0, S=10xxxx -- period=16
    // N=0, S=110xxx -- period=8
    // N=0, S=1110xx -- period=4
    // N=0, S=11110x -- period=2
    // R is the shift amount, low bits of S = n-1
    func bitconEncode(x uint64, mode int) uint32 {
    	if mode == 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. 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)
  7. cluster/gce/gci/configure-helper.sh

    function append_or_replace_prefixed_line {
      local -r file="${1:-}"
      local -r prefix="${2:-}"
      local -r suffix="${3:-}"
      local -r dirname=$(dirname "${file}")
      local -r tmpfile=$(mktemp "${dirname}/filtered.XXXX")
    
      touch "${file}"
      awk -v pfx="${prefix}" 'substr($0,1,length(pfx)) != pfx { print }' "${file}" > "${tmpfile}"
      echo "${prefix}${suffix}" >> "${tmpfile}"
      mv "${tmpfile}" "${file}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return{EventInfo,};});'use strict';tr.exportTo('tr.b',function(){let nextGUID=1;const UUID4_PATTERN='xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx';const GUID={allocateSimple(){return nextGUID++;},getLastSimpleGuid(){return nextGUID-1;},allocateUUID4(){return UUID4_PATTERN.replace(/[xy]/g,function(c){let r=parseInt(Math.random()*16);if(c==='y')r=(r&3)+8;return r.toStri...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top