Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 308 for LowerCase (0.16 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    		// Add "es" when ending with "s"
    		{Kind: "miss", Plural: "misses", Singular: "miss"},
    		// Add "s" otherwise
    		{Kind: "lowercase", Plural: "lowercases", Singular: "lowercase"},
    	}
    	for i, testCase := range testCases {
    		version := schema.GroupVersion{}
    
    		plural, singular := UnsafeGuessKindToResource(version.WithKind(testCase.Kind))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  3. .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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/text/cases/map.go

    	}
    	return c.ret()
    
    }
    
    // Span implements a generic lower-casing. This is possible as isLower works
    // for all lowercasing variants. All lowercase variants only vary in how they
    // transform a non-lowercase letter. They will never change an already lowercase
    // letter. In addition, there is no state.
    func (t undLowerIgnoreSigmaCaser) Span(src []byte, atEOF bool) (n int, err error) {
    	c := context{src: src, atEOF: atEOF}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. .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)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

            }
    
            testServices.assertions.assertEqualsToTestDataFileSibling(
                actualText,
                extension = ".${modificationEventKind.name.lowercase()}.txt",
    
                // Support differing result data. Using `testPrefix` takes away the ability for different kinds of tests (such as IDE vs.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromProperties.kt

            return getters.map { (name, getter) ->
                checkNotNull(getter)
                val nameAfterGet = name.substringAfter("get")
                val propertyName = nameAfterGet.replaceFirstChar { it.lowercase(Locale.getDefault()) }
                val type = propertyValueType(getter.returnType).toDataTypeRefOrError()
                val isHidden = getter.annotations.any { it is HiddenInDeclarativeDsl }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top