Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for LowerCase (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. hack/gen-swagger-doc/gen-swagger-docs.sh

      then
        buf+="* <<${VERSION}.${m}>>\n"
      fi
    done
    sed -i "1i ${buf}" ./definitions.adoc
    
    # fix the links in .adoc, replace <<x.y>> with link:definitions.html#_x_y[x.y], and lowercase the _x_y part
    sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:#_\L\1_\2\E[\1.\2]|g' ./definitions.adoc
    sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:../definitions#_\L\1_\2\E[\1.\2]|g' ./paths.adoc
    
    # fix the link to <<any>>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 19 12:58:58 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/common/case_format.cc

    };
    
    string FormatStringCase(const string &str, CaseFormatType to,
                            const char delimiter = '_') {
      const bool from_snake =
          (str == str_util::Uppercase(str)) || (str == str_util::Lowercase(str));
      const bool toUpper = (to == UPPER_CAMEL || to == UPPER_SNAKE);
      const bool toSnake = (to == LOWER_SNAKE || to == UPPER_SNAKE);
    
      string result;
    
      bool inputStart = true;
      bool wordStart = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1alpha1/types.go

    // 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.
    type SelfSubjectReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/net/parse.go

    			return true
    		}
    	}
    	return false
    }
    
    // lowerASCIIBytes makes x ASCII lowercase in-place.
    func lowerASCIIBytes(x []byte) {
    	for i, b := range x {
    		if 'A' <= b && b <= 'Z' {
    			x[i] += 'a' - 'A'
    		}
    	}
    }
    
    // lowerASCII returns the ASCII lowercase version of b.
    func lowerASCII(b byte) byte {
    	if 'A' <= b && b <= 'Z' {
    		return b + ('a' - 'A')
    	}
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top