Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for LowerCase (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/caching/BuildCacheServiceFactory.java

             * {@link BuildCacheServiceFactory} implementations should always return the same value for the same cache “type”.
             * All implementations should call this method.
             * <p>
             * Values should be lowercase, except where using an acronym (e.g. HTTP).
             * <p>
             * Subsequent calls to this method replace the previously set value.
             */
            Describer type(String type);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 08 17:15:17 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"status":   "Status is filled in by the server with the user attributes.",
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/net/http/header.go

    }
    
    // CanonicalHeaderKey returns the canonical format of the
    // header key s. The canonicalization converts the first
    // letter and any letter following a hyphen to upper case;
    // the rest are converted to lowercase. For example, the
    // canonical key for "accept-encoding" is "Accept-Encoding".
    // If s contains a space or invalid header field bytes, it is
    // returned without modifications.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/user/user.go

    	// a SubjectAccessReviewSpec.authorization.k8s.io for proper authorization
    	// delegation flows
    	// In order to faithfully round-trip through an impersonation flow, these keys
    	// MUST be lowercase.
    	GetExtra() map[string][]string
    }
    
    // DefaultInfo provides a simple user information exchange object
    // for components that implement the UserInfo interface.
    type DefaultInfo struct {
    	Name   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 16:21:55 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  5. src/math/big/intconv.go

    var _ fmt.Formatter = intOne // *Int must implement fmt.Formatter
    
    // Format implements [fmt.Formatter]. It accepts the formats
    // 'b' (binary), 'o' (octal with 0 prefix), 'O' (octal with 0o prefix),
    // 'd' (decimal), 'x' (lowercase hexadecimal), and
    // 'X' (uppercase hexadecimal).
    // Also supported are the full suite of package fmt's format
    // flags for integral types, including '+' and ' ' for sign
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

            "${type.displayName} - ${os.asName()}${if (withoutDependencies) " without dependencies" else ""}"
    
        override
        fun channel() =
            "${type.channel}${if (os == Os.LINUX) "" else "-${os.name.lowercase(Locale.US)}"}-%teamcity.build.branch%"
    }
    
    data class FlameGraphGeneration(
        private val uuid: Int,
        private val name: String,
        private val scenarios: List<PerformanceScenario>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/pubkeypin/pubkeypin.go

    	_, err := hex.DecodeString(hash)
    	if err != nil {
    		return errors.Wrap(err, "could not decode SHA-256 from hex")
    	}
    
    	// in the end, just store the original hex string in memory (in lowercase)
    	s.sha256Hashes[strings.ToLower(hash)] = true
    	return nil
    }
    
    // checkSHA256 returns true if the certificate's "sha256" hash is pinned in the Set
    func (s *Set) checkSHA256(certificate *x509.Certificate) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. src/html/template/attr.go

    	"width":       contentTypePlain,
    	"wrap":        contentTypePlain,
    	"xmlns":       contentTypeURL,
    }
    
    // attrType returns a conservative (upper-bound on authority) guess at the
    // type of the lowercase named attribute.
    func attrType(name string) contentType {
    	if strings.HasPrefix(name, "data-") {
    		// Strip data- so that custom attribute heuristics below are
    		// widely applied.
    		// Treat data-action as URL below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingParentDynamicObject.kt

                    text("Project ")
                    reference(referrerProject.identityPath.toString())
                    text(" cannot dynamically look up a ")
                    text(memberKind.name.lowercase(Locale.ENGLISH))
                    text(" in the parent project ")
                    reference(ownerProject.identityPath.toString())
                }
                    .mapLocation { location ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/DocsTest.kt

                " -PtestJavaVersion=${testJava.version.major}" +
                " -PtestJavaVendor=${testJava.vendor.name}" +
                " -P${testSplitType.name.lowercase()}TestClasses=true",
            preSteps = prepareTestClassesStep(os, testSplitType, testClasses)
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top