Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isspace (0.45 sec)

  1. src/cmd/go/internal/load/pkg.go

    }
    
    func makeImportValid(r rune) rune {
    	// Should match Go spec, compilers, and ../../go/parser/parser.go:/isValidImport.
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    	if !unicode.IsGraphic(r) || unicode.IsSpace(r) || strings.ContainsRune(illegalChars, r) {
    		return '_'
    	}
    	return r
    }
    
    // Mode flags for loadImport and download (in get.go).
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/reflect/value.go

    		fn = *(*unsafe.Pointer)(v.ptr)
    	} else {
    		fn = v.ptr
    	}
    
    	if fn == nil {
    		panic("reflect.Value.Call: call of nil function")
    	}
    
    	isSlice := op == "CallSlice"
    	n := t.NumIn()
    	isVariadic := t.IsVariadic()
    	if isSlice {
    		if !isVariadic {
    			panic("reflect: CallSlice of non-variadic function")
    		}
    		if len(in) < n {
    			panic("reflect: CallSlice with too few input arguments")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"url('https://example.com/').getPort() == ''",
    				"url('/path').getPort() == ''",
    				"url('https://example.com/path').getEscapedPath() == '/path'",
    				"url('https://example.com/with space/').getEscapedPath() == '/with%20space/'",
    				"url('https://example.com').getEscapedPath() == ''",
    				"url('https://example.com/path?k1=a&k2=b&k2=c').getQuery() == { 'k1': ['a'], 'k2': ['b', 'c']}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top