Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 255 for LowerCase (0.18 sec)

  1. common-protos/k8s.io/api/authentication/v1alpha1/generated.proto

    // When using impersonation, users will receive the user info of the user being impersonated.  If impersonation or
    // request header authentication is used, any extra keys will have their case ignored and returned as lowercase.
    message SelfSubjectReview {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutput.groovy

        }
    
        String getRawValue() {
            return result.toString()
        }
    
        /**
         * Returns the normalized value of this text output. Normalizes:
         * - style changes to {style} where _style_ is the lowercase name of the style.
         * - line endings to \n
         * - stack traces to {stacktrace}\n
         */
        String getValue() {
            StringBuilder normalised = new StringBuilder()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/visibilityChecker/AbstractVisibilityCheckerTest.kt

        }
    
        private fun findFirstUseSiteElement(ktFile: KtFile): KtNamedDeclaration? =
            ktFile.findDescendantOfType<KtNamedDeclaration> { it.name?.lowercase() == USE_SITE_ELEMENT_NAME }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 16:12:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/UniqueId.java

     * The string representation cannot change.
     *
     * @since 4.0
     */
    public final class UniqueId {
    
        private static final BaseEncoding ENCODING = BaseEncoding.base32().lowerCase().omitPadding();
        private static final Pattern PATTERN = Pattern.compile("[a-z2-7]{26}");
    
        private static final Factory<UniqueId> FACTORY = new Factory<UniqueId>() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. pkg/util/parsers/parsers_test.go

    		{Input: "ROOT", expectedError: "must be lowercase"},
    		{Input: "http://root", expectedError: "invalid reference format"},
    		{Input: "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", expectedError: "cannot specify 64-byte hexadecimal strings"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 01:53:43 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/html/SimpleHtmlWriter.java

                throw new IllegalArgumentException(String.format("Invalid HTML tag: '%s'", name));
            }
            return super.startElement(name);
        }
    
        // All valid tags should be in lowercase
        // Add more tags as necessary
        private final static Set<String> VALID_HTML_TAGS = Collections.unmodifiableSet(new HashSet<>(Arrays.asList(
            "html",
            "head",
            "meta", "title", "link", "script",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 14:02:57 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/conversion_test.go

    func BenchmarkConvertProtocol(b *testing.B) {
    	cases := []struct {
    		name  string
    		proto corev1.Protocol
    		out   protocol.Instance
    	}{
    		{"grpc-web-lowercase", corev1.ProtocolTCP, protocol.GRPCWeb},
    		{"GRPC-WEB-mixedcase", corev1.ProtocolTCP, protocol.GRPCWeb},
    		{"https-lowercase", corev1.ProtocolTCP, protocol.HTTPS},
    		{"HTTPS-mixedcase", corev1.ProtocolTCP, protocol.HTTPS},
    	}
    
    	for _, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    	qsort(errors, nelem(errors), sizeof errors[0], intcmp);
    	for(i=0; i<nelem(errors); i++) {
    		e = errors[i];
    		if(i > 0 && errors[i-1] == e)
    			continue;
    		strcpy(buf, strerror(e));
    		// lowercase first letter: Bad -> bad, but STREAM -> STREAM.
    		if(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)
    			buf[0] += a - A;
    		printf("\t%d: \"%s\",\n", e, buf);
    	}
    	printf("}\n\n");
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (2)
  9. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/FirDiagnosticToKtDiagnosticConverterRenderer.kt

            print("add(${diagnostic.original.containingObjectName}.${diagnostic.original.name}")
            if (diagnostic.severity != null) {
                print(".${diagnostic.severity.name.lowercase()}Factory")
            }
            println(") { firDiagnostic ->")
            withIndent {
                println("${diagnostic.implClassName}(")
                withIndent {
                    printDiagnosticParameters(diagnostic)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

          }
    
          override operator fun get(url: HttpUrl): String {
            val host = url.host
            return host.substring(1, host.length - 5).lowercase()
          }
    
          override fun canonicalize(s: String): String = s.lowercase()
        },
    
        PATH {
          override fun urlString(value: String): String = "http://example.com/a${value}z/"
    
          override fun encodedValue(url: HttpUrl): String {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top