Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nonSpace (0.17 sec)

  1. src/encoding/json/stream.go

    		// Did the last read have an error?
    		// Delayed until now to allow buffer scan.
    		if err != nil {
    			if err == io.EOF {
    				if dec.scan.step(&dec.scan, ' ') == scanEnd {
    					break Input
    				}
    				if nonSpace(dec.buf) {
    					err = io.ErrUnexpectedEOF
    				}
    			}
    			dec.err = err
    			return 0, err
    		}
    
    		n := scanp - dec.scanp
    		err = dec.refill()
    		scanp = dec.scanp + n
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/completion.go

    	source "$@"
    }
    
    __kubeadm_type() {
    	# -t is not supported by zsh
    	if [ "$1" == "-t" ]; then
    		shift
    
    		# fake Bash 4 to disable "complete -o nospace". Instead
    		# "compopt +-o nospace" is used in the code to toggle trailing
    		# spaces. We don't support that, but leave trailing spaces on
    		# all the time
    		if [ "$1" = "__kubeadm_compopt" ]; then
    			echo builtin
    			return 0
    		fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    				},
    			}},
    			true: {{
    				RequestInfo: &request.RequestInfo{
    					IsResourceRequest: true,
    					Verb:              "mandate",
    					APIGroup:          "nogroup",
    					Namespace:         "nospace",
    					Resource:          "nons",
    				},
    				User: &user.DefaultInfo{
    					Name:   "nobody",
    					Groups: []string{user.AllAuthenticated, "nogroup"},
    				},
    			}},
    		},
    		true: {
    			false: {{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  4. src/fmt/scan.go

    	rx := uint16(r)
    	for _, rng := range space {
    		if rx < rng[0] {
    			return false
    		}
    		if rx <= rng[1] {
    			return true
    		}
    	}
    	return false
    }
    
    // notSpace is the default scanning function used in Token.
    func notSpace(r rune) bool {
    	return !isSpace(r)
    }
    
    // readRune is a structure to enable reading UTF-8 encoded code points
    // from an io.Reader. It is used if the Reader given to the scanner does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  5. pkg/collateral/control.go

    	setopt kshglob noshglob braceexpand
    	source "$@"
    }
    __istio_type() {
    	# -t is not supported by zsh
    	if [ "$1" == "-t" ]; then
    		shift
    		# fake Bash 4 to disable "complete -o nospace". Instead
    		# "compopt +-o nospace" is used in the code to toggle trailing
    		# spaces. We don't support that, but leave trailing spaces on
    		# all the time
    		if [ "$1" = "__istio_compopt" ]; then
    			echo builtin
    			return 0
    		fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: make sure the etcd static pod startup probe uses /health?serializable=false while the liveness probe uses /health?serializable=true&exclude=NOSPACE. The NOSPACE exclusion would allow administrators to address space issues one member at a time. ([#110744](https://github.com/kubernetes/kubernetes/pull/110744), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top