Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,940 for stringAt (0.14 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/groovy/my-utils/string-utils/src/main/java/org/sample/stringutils/Strings.java

    package org.sample.stringutils;
    
    import org.apache.commons.lang3.StringUtils;
    
    public class Strings {
       public static String concat(Object left, Object right) {
         return strip(left) + " " + strip(right);
       }
    
       private static String strip(Object val) {
         return StringUtils.strip(String.valueOf(val));
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/groovy/modules/string-utils/src/main/java/org/sample/stringutils/Strings.java

    package org.sample.stringutils;
    
    import org.apache.commons.lang3.StringUtils;
    
    public class Strings {
       public static String concat(Object left, Object right) {
         return strip(left) + " " + strip(right);
       }
    
       private static String strip(Object val) {
         return StringUtils.strip(String.valueOf(val));
       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  3. src/strings/strings.go

    		return b.String()
    	}
    	return Map(unicode.ToLower, s)
    }
    
    // ToTitle returns a copy of the string s with all Unicode letters mapped to
    // their Unicode title case.
    func ToTitle(s string) string { return Map(unicode.ToTitle, s) }
    
    // ToUpperSpecial returns a copy of the string s with all Unicode letters mapped to their
    // upper case using the case mapping specified by c.
    func ToUpperSpecial(c unicode.SpecialCase, s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/res/values/strings.xml

    <resources>
        <string name="app_name">My First App</string>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 75 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/values/strings.xml

    <resources>
        <string name="app_name">My First App</string>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 75 bytes
    - Viewed (0)
  6. test/codegen/strings.go

    package codegen
    
    // This file contains code generation tests related to the handling of
    // string types.
    
    func CountRunes(s string) int { // Issue #24923
    	// amd64:`.*countrunes`
    	return len([]rune(s))
    }
    
    func CountBytes(s []byte) int {
    	// amd64:-`.*runtime.slicebytetostring`
    	return len(string(s))
    }
    
    func ToByteSlice() []byte { // Issue #24698
    	// amd64:`LEAQ\ttype:\[3\]uint8`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:17:28 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/values/strings.xml

    <resources>
        <string name="app_name">Kotlin DSL Android Studio Sample</string>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 95 bytes
    - Viewed (0)
  8. test/ken/string.out

    Ian Lance Taylor <******@****.***> 1326931944 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 00:12:24 UTC 2012
    - 49 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/string.kt

     */
    
    package org.gradle.kotlin.dsl.support
    
    import org.gradle.util.internal.TextUtil.convertLineSeparatorsToUnix
    import java.util.Locale
    
    
    fun String.normaliseLineSeparators(): String =
        convertLineSeparatorsToUnix(this)
    
    
    fun String.uppercaseFirstChar(): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 929 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    // started.
    package cryptobyte // import "golang.org/x/crypto/cryptobyte"
    
    // String represents a string of bytes. It provides methods for parsing
    // fixed-length and length-prefixed values from it.
    type String []byte
    
    // read advances a String by n bytes and returns them. If less than n bytes
    // remain, it returns nil.
    func (s *String) read(n int) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top