Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for lowercased (0.22 sec)

  1. .teamcity/src/main/kotlin/common/extensions.kt

    fun functionalTestExtraParameters(buildScanTag: String, os: Os, arch: Arch, testJvmVersion: String, testJvmVendor: String): String {
        val buildScanValues = mapOf(
            "coverageOs" to os.name.lowercase(),
            "coverageArch" to arch.name.lowercase(),
            "coverageJvmVendor" to testJvmVendor,
            "coverageJvmVersion" to "java$testJvmVersion"
        )
        return (
            listOf(
                "-PtestJavaVersion=$testJvmVersion",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

       * they can return ASCII characters that match real hostnames.
       */
      private fun String.asciiToLowercase(): String {
        return when {
          isAscii() -> lowercase(Locale.US) // This is an ASCII string.
          else -> this
        }
      }
    
      /** Returns true if the [String] is ASCII encoded (0-127). */
      private fun String.isAscii() = length == utf8Size().toInt()
    
      /**
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  3. cmd/signature-v4.go

    			}
    			buf.WriteString(signV4TrimAll(v))
    		}
    		buf.WriteByte('\n')
    	}
    	return buf.String()
    }
    
    // getSignedHeaders generate a string i.e alphabetically sorted, semicolon-separated list of lowercase request header names
    func getSignedHeaders(signedHeaders http.Header) string {
    	var headers []string
    	for k := range signedHeaders {
    		headers = append(headers, strings.ToLower(k))
    	}
    	sort.Strings(headers)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:45:54 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Cookie.kt

                dayOfMonth = matcher.group(1).toInt()
              }
              month == -1 && matcher.usePattern(MONTH_PATTERN).matches() -> {
                val monthString = matcher.group(1).lowercase(Locale.US)
                month = MONTH_PATTERN.pattern().indexOf(monthString) / 4 // Sneaky! jan=1, dec=12.
              }
              year == -1 && matcher.usePattern(YEAR_PATTERN).matches() -> {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:12:05 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    		// add underscore if last letter is capital letter
    		// add underscore when previous letter is lowercase
    		// add underscore when next letter is lowercase
    		if (i != 0 || i == l-1) && ((i > 0 && rune(camel[i-1]) >= 'a') ||
    			(i < l-1 && rune(camel[i+1]) >= 'a')) {
    			b.WriteRune('_')
    		}
    		b.WriteRune(v + 'a' - 'A')
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    ldap.admin.group.object.classes=groupOfNames
    ldap.admin.sync.password=true
    
    ldap.auth.validation=true
    ldap.max.username.length=-1
    ldap.ignore.netbios.name=true
    ldap.group.name.with.underscores=false
    ldap.lowercase.permission.name=false
    ldap.allow.empty.permission=true
    
    ldap.role.search.user.enabled=true
    ldap.role.search.group.enabled=true
    ldap.role.search.role.enabled=true
    
    ldap.attr.surname=sn
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. false */
        String LDAP_GROUP_NAME_WITH_UNDERSCORES = "ldap.group.name.with.underscores";
    
        /** The key of the configuration. e.g. false */
        String LDAP_LOWERCASE_PERMISSION_NAME = "ldap.lowercase.permission.name";
    
        /** The key of the configuration. e.g. true */
        String LDAP_ALLOW_EMPTY_PERMISSION = "ldap.allow.empty.permission";
    
        /** The key of the configuration. e.g. true */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  8. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public static String[] stripAll(String[]); public static String[] stripAll(String[], String); public static String stripEnd(String, String); public static String stripStart(String, String); public static String upperCase(String); public static String lowerCase(String); public static String uncapitalise(String); public static String capitalise(String); public static String swapCase(String); public static String capitaliseAllWords(String); public static String uncapitaliseAllWords(String); public static...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                                      type: string
                                  type: object
                                description: The header keys must be lowercase and use
                                  hyphen as the separator, e.g.
                                type: object
                              ignoreUriCase:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  10. doc/go_spec.html

    operators, in increasing precedence:
    </p>
    <pre class="grammar">
    |   alternation
    ()  grouping
    []  option (0 or 1 times)
    {}  repetition (0 to n times)
    </pre>
    
    <p>
    Lowercase production names are used to identify lexical (terminal) tokens.
    Non-terminals are in CamelCase. Lexical tokens are enclosed in
    double quotes <code>""</code> or back quotes <code>``</code>.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top