Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 308 for LowerCase (0.29 sec)

  1. pkg/apis/resource/validation/validation_resourceslice_test.go

    			slice:        testResourceSlice("", goodName, driverName),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. test/string_lit.go

    			`ä` +
    			`本` +
    			`\a\b\f\n\r\t\v\\\'` +
    			`\000\123\x00\xca\xFE\u0123\ubabe\U0000babe` +
    			`\x\u\U\`
    
    	assert("", ``, "empty")
    	assert(" ", " ", "blank")
    	assert("\x61", "a", "lowercase a")
    	assert("\x61", `a`, "lowercase a (backquote)")
    	assert("\u00e4", "ä", "a umlaut")
    	assert("\u00e4", `ä`, "a umlaut (backquote)")
    	assert("\u672c", "本", "nihon")
    	assert("\u672c", `本`, "nihon (backquote)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:17:02 UTC 2013
    - 3.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

       * lowercase equivalent. Otherwise returns the argument.
       */
      public static char toLowerCase(char c) {
        return isUpperCase(c) ? (char) (c ^ CASE_MASK) : c;
      }
    
      /**
       * Returns a copy of the input string in which all {@linkplain #isLowerCase(char) lowercase ASCII
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/stdlib-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/stdlib/StringExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.stdlib
    
    import java.util.Locale
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 755 bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    			schedulingCtx: testPodSchedulingContexts("", goodNS, goodPodSchedulingSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template:     testClaimTemplate("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/catalog/problems/VersionCatalogProblemId.java

     * limitations under the License.
     */
    package org.gradle.api.internal.catalog.problems;
    
    /**
     * Problem IDs for version catalog problems.
     *
     * The lowercase names of these correspond to sections in <a href="https://docs.gradle.org/current/userguide/version_catalog_problems.html">version catalog problems</a>.
     * Always change version_catalog_problems.adoc accordingly when renaming an ID.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/net/nss.go

    // after an NSS source name.
    type nssCriterion struct {
    	negate bool   // if "!" was present
    	status string // e.g. "success", "unavail" (lowercase)
    	action string // e.g. "return", "continue" (lowercase)
    }
    
    // standardStatusAction reports whether c is equivalent to not
    // specifying the criterion at all. last is whether this criteria is the
    // last in the list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. src/unicode/example_test.go

    	const lcG = 'g'
    	fmt.Printf("%#U\n", unicode.To(unicode.UpperCase, lcG))
    	fmt.Printf("%#U\n", unicode.To(unicode.LowerCase, lcG))
    	fmt.Printf("%#U\n", unicode.To(unicode.TitleCase, lcG))
    
    	const ucG = 'G'
    	fmt.Printf("%#U\n", unicode.To(unicode.UpperCase, ucG))
    	fmt.Printf("%#U\n", unicode.To(unicode.LowerCase, ucG))
    	fmt.Printf("%#U\n", unicode.To(unicode.TitleCase, ucG))
    
    	// Output:
    	// U+0047 'G'
    	// U+0067 'g'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/common.go

    	}
    	return nil
    }
    
    // LowercaseSANs can be used to force all SANs to be lowercase so it passes IsDNS1123Subdomain
    func LowercaseSANs(sans []string) {
    	for i, san := range sans {
    		lowercase := strings.ToLower(san)
    		if lowercase != san {
    			klog.V(1).Infof("lowercasing SAN %q to %q", san, lowercase)
    			sans[i] = lowercase
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top