- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 153 for fips (0.02 seconds)
-
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/BuildToolsConventionsPlugin.java
int defaultParallel = ParallelDetector.findDefaultParallel(project); project.getTasks().withType(Test.class).configureEach(test -> { test.onlyIf((t) -> Util.getBooleanProperty("tests.fips.enabled", false) == false); test.setMaxParallelForks(defaultParallel); }); // we put all our distributable files under distributions project.getTasks().withType(Jar.class).configureEach(j ->
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Jun 23 09:44:49 GMT 2021 - 1.5K bytes - Click Count (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java
aign\u000faffinitylottery\u0004glug\u0003lug\u0004lugs\u000braffleentry\rweeklylottery\u0003phx\u0009ann-arbor\u0003cog\u0003dst\u0005eaton\u0009washtenaw\u0003mel\nlambda-url\u000ftransfer-webapp\u0014transfer-webapp-fips\u0008notebook\u0008labeling\rnotebook-fips\u000bstudio-fips\u0004alp1\u0003eur\u0008fr-par-1\u0008fr-par-2\u0008nl-ams-1\u0007cockpit\u0003ddl\u0004dtwh\u0003fnc\u0003ifr\u0004kafk\u0004mgdb\u0003rdb\ns3-website\u0004scbl\u0003whm\ncn-north-1\u000ecn-northwest-1\u0002eb\naws-c...
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 06 20:41:51 GMT 2026 - 290.5K bytes - Click Count (1) -
src/cmd/asm/internal/arch/mips.go
func IsMIPSMUL(op obj.As) bool { switch op { case mips.AMUL, mips.AMULU, mips.AMULV, mips.AMULVU, mips.ADIV, mips.ADIVU, mips.ADIVV, mips.ADIVVU, mips.AREM, mips.AREMU, mips.AREMV, mips.AREMVU, mips.AMADD, mips.AMSUB: return true } return false } func mipsRegisterNumber(name string, n int16) (int16, bool) { switch name { case "F": if 0 <= n && n <= 31 { return mips.REG_F0 + n, true } case "FCR":
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Mar 04 19:06:44 GMT 2020 - 1.7K bytes - Click Count (0) -
cmd/xl-storage-format-utils_test.go
if err != nil { t.Fatalf("Failed to serialize xlmeta %v", err) } fivs, err := getFileInfoVersions(buf, basefi.Volume, basefi.Name, false) if err != nil { t.Fatalf("getFileInfoVersions failed: %v", err) } chkNumVersions := func(fis []FileInfo) bool { for i := 0; i < len(fis)-1; i++ { if fis[i].NumVersions != fis[i+1].NumVersions { return false } } return true }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 7.1K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/mips.s
Junxian Zhu <******@****.***> 1691045041 +0800
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Aug 08 12:17:12 GMT 2023 - 6.7K bytes - Click Count (0) -
compat/maven-model-builder/src/test/resources/dag.txt
quarkus/test-framework/junit5-internal/pom.xml quarkus/extensions/resteasy-classic/resteasy-jackson/deployment/pom.xml quarkus/extensions/oidc/deployment/pom.xml quarkus/integration-tests/bouncycastle-fips/pom.xml quarkus/extensions/resteasy-classic/resteasy/runtime/pom.xml quarkus/extensions/security/runtime/pom.xml quarkus/test-framework/junit5/pom.xml quarkus/extensions/google-cloud-functions-http/runtime/pom.xml
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 224K bytes - Click Count (0) -
src/cmd/asm/internal/arch/arch.go
// Note that there is no list of names as there is for x86. for i := mips.REG_R0; i <= mips.REG_R31; i++ { register[obj.Rconv(i)] = int16(i) } for i := mips.REG_F0; i <= mips.REG_F31; i++ { register[obj.Rconv(i)] = int16(i) } for i := mips.REG_M0; i <= mips.REG_M31; i++ { register[obj.Rconv(i)] = int16(i) } for i := mips.REG_FCR0; i <= mips.REG_FCR31; i++ { register[obj.Rconv(i)] = int16(i) }Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Mar 20 17:02:17 GMT 2026 - 22K bytes - Click Count (0) -
cmd/xl-storage-format-utils.go
if !inclFreeVersions { fivs.FreeVersions = append(fivs.FreeVersions, fi) } } else { if !inclFreeVersions { fivs.Versions[n] = fi } n++ } } if !inclFreeVersions { fivs.Versions = fivs.Versions[:n] } // Update numversions for i := range fivs.Versions { fivs.Versions[i].NumVersions = n } return fivs, nil }Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Aug 08 15:29:58 GMT 2024 - 5.5K bytes - Click Count (0) -
build-logic/build.gradle.kts
"Use the same org.gradle.jvmargs for both builds.") } } } fun readProperties(propertiesFile: File) = java.util.Properties().apply { propertiesFile.inputStream().use { fis -> load(fis) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Feb 09 03:14:32 GMT 2026 - 1.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ObjectArrays.java
* of the returned array is that of the specified array. If the collection fits in the specified * array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the * specified array and the size of the specified collection. * * <p>If the collection fits in the specified array with room to spare (i.e., the array has more
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jan 23 17:16:53 GMT 2026 - 9.2K bytes - Click Count (0)