Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 158 for isspace (0.12 sec)

  1. test/named.go

    	isMap(Map{})
    
    	asSlice(slice)
    	isSlice(slice)
    	asSlice(make(Slice, 5))
    	isSlice(make(Slice, 5))
    	asSlice([]byte{1, 2, 3})
    	asSlice([]byte{1, 2, 3}[0:2])
    	asSlice(slice[0:4])
    	isSlice(slice[0:4])
    	asSlice(slice[3:8])
    	isSlice(slice[3:8])
    	asSlice(nil)
    	asSlice(Slice(nil))
    	isSlice(Slice(nil))
    	slice = nil
    	asSlice(Slice{1, 2, 3})
    	isSlice(Slice{1, 2, 3})
    	asSlice(Slice{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.6K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepository.kt

                }
            }
    
        fun isSince(version: String, member: JApiCompatibility): Boolean =
            apiSourceFileFor(member).let { apiSourceFile ->
                when (apiSourceFile) {
                    is ApiSourceFile.Java -> sources.executeQuery(apiSourceFile, JavaSourceQueries.isSince(version, member))
                    is ApiSourceFile.Kotlin -> sources.executeQuery(apiSourceFile, KotlinSourceQueries.isSince(version, member))
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            assertEquals(new File(baseDir, 'with white%20space').toURI(), baseDirConverter.resolveUri('with white%20space'))
            assertEquals('with white%20space', baseDirConverter.resolve(baseDirConverter.resolveUri('with white%20space')).name)
        }
    
        @Test public void testResolveUriStringWithEncodedCharsToUri() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

                            return true
                        }
                        return null
                    }
                }
            )
    
        fun isSince(version: String, member: JApiCompatibility): JavaSourceQuery<Boolean> =
            member.jApiClass.simpleName.let { declaringClassSimpleName ->
                JavaSourceQuery(
                    false,
                    when (member) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    //     but only if there is space or tab inside s.
    func EscapeArg(s string) string {
    	if len(s) == 0 {
    		return `""`
    	}
    	n := len(s)
    	hasSpace := false
    	for i := 0; i < len(s); i++ {
    		switch s[i] {
    		case '"', '\\':
    			n++
    		case ' ', '\t':
    			hasSpace = true
    		}
    	}
    	if hasSpace {
    		n += 2 // Reserve space for quotes.
    	}
    	if n == len(s) {
    		return s
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. src/syscall/exec_windows.go

    	}
    
    	needsBackslash := false
    	hasSpace := false
    	for i := 0; i < len(s); i++ {
    		switch s[i] {
    		case '"', '\\':
    			needsBackslash = true
    		case ' ', '\t':
    			hasSpace = true
    		}
    	}
    
    	if !needsBackslash && !hasSpace {
    		// No special handling required; normal case.
    		return append(b, s...)
    	}
    	if !needsBackslash {
    		// hasSpace is true, so we need to quote the string.
    		b = append(b, '"')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/goarch/zgoarch_mips64.go

    const IsMips64le = 0
    const IsMips64p32 = 0
    const IsMips64p32le = 0
    const IsPpc = 0
    const IsPpc64 = 0
    const IsPpc64le = 0
    const IsRiscv = 0
    const IsRiscv64 = 0
    const IsS390 = 0
    const IsS390x = 0
    const IsSparc = 0
    const IsSparc64 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 580 bytes
    - Viewed (0)
  9. src/internal/goarch/zgoarch_s390.go

    const IsMips64le = 0
    const IsMips64p32 = 0
    const IsMips64p32le = 0
    const IsPpc = 0
    const IsPpc64 = 0
    const IsPpc64le = 0
    const IsRiscv = 0
    const IsRiscv64 = 0
    const IsS390 = 1
    const IsS390x = 0
    const IsSparc = 0
    const IsSparc64 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 576 bytes
    - Viewed (0)
  10. src/internal/goarch/zgoarch_386.go

    const IsMips64le = 0
    const IsMips64p32 = 0
    const IsMips64p32le = 0
    const IsPpc = 0
    const IsPpc64 = 0
    const IsPpc64le = 0
    const IsRiscv = 0
    const IsRiscv64 = 0
    const IsS390 = 0
    const IsS390x = 0
    const IsSparc = 0
    const IsSparc64 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 574 bytes
    - Viewed (0)
Back to top