- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 62 for osSuffix (0.29 sec)
-
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
fun stageTriggerId(model: CIBuildModel, stageName: StageName, os: Os? = null) = "${model.projectId}_Stage_${stageName.id}_${osSuffix(os)}Trigger" fun stageTriggerUuid(model: CIBuildModel, stageName: StageName, os: Os? = null) = "${DslContext.uuidPrefix}_${model.projectId}_Stage_${stageName.uuid}_${osSuffix(os)}Trigger" fun osSuffix(os: Os?) = os?.asName()?.plus("_") ?: "" fun <T : BaseGradleBuildType> Dependencies.snapshotDependencies(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 08:08:13 UTC 2024 - 5.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/armerror.s
SWPW.S R1, (R2), R3 // ERROR "invalid .S suffix" MOVF.S (R0), F1 // ERROR "invalid .S suffix" MOVF.S F9, (R4) // ERROR "invalid .S suffix" MOVF.S 0xfff0(R0), F1 // ERROR "invalid .S suffix" MOVF.S F9, 0xfff0(R4) // ERROR "invalid .S suffix" ADDF.S F1, F2, F3 // ERROR "invalid .S suffix" SUBD.U F1, F2 // ERROR "invalid .U suffix" NEGF.W F9, F10 // ERROR "invalid .W suffix"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 14.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
@Override protected List<String> create(String[] elements) { String[] suffix = {"f", "g"}; String[] all = new String[elements.length + suffix.length]; arraycopy(elements, 0, all, 0, elements.length); arraycopy(suffix, 0, all, elements.length, suffix.length); return ImmutableList.copyOf(all).subList(0, elements.length); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
"testEqualsAndSerializable", "testEqualsAndSerialization", "testEquality"); private static final Chopper TEST_SUFFIX = suffix("Test").or(suffix("Tests")).or(suffix("TestCase")).or(suffix("TestSuite")); private final Logger logger = Logger.getLogger(getClass().getName()); private final ClassSanityTester tester = new ClassSanityTester();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 19:43:49 UTC 2024 - 17.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
@Override protected List<String> create(String[] elements) { String[] suffix = {"f", "g"}; String[] all = new String[elements.length + suffix.length]; arraycopy(elements, 0, all, 0, elements.length); arraycopy(suffix, 0, all, elements.length, suffix.length); return ImmutableList.copyOf(all).subList(0, elements.length); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
"testEqualsAndSerializable", "testEqualsAndSerialization", "testEquality"); private static final Chopper TEST_SUFFIX = suffix("Test").or(suffix("Tests")).or(suffix("TestCase")).or(suffix("TestSuite")); private final Logger logger = Logger.getLogger(getClass().getName()); private final ClassSanityTester tester = new ClassSanityTester();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 19:43:49 UTC 2024 - 17.9K bytes - Viewed (0) -
src/bytes/bytes.go
// CutSuffix returns s without the provided ending suffix byte slice // and reports whether it found the suffix. // If s doesn't end with suffix, CutSuffix returns s, false. // If suffix is the empty byte slice, CutSuffix returns s, true. // // CutSuffix returns slices of the original slice s, not copies. func CutSuffix(s, suffix []byte) (before []byte, found bool) { if !HasSuffix(s, suffix) { return s, false }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Sep 03 20:55:15 UTC 2024 - 35.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashing.java
static int getNext(int entry, int mask) { return entry & mask; } /** Returns a new value combining the prefix and suffix using the given mask. */ static int maskCombine(int prefix, int suffix, int mask) { return (prefix & ~mask) | (suffix & mask); } static int remove( @CheckForNull Object key, @CheckForNull Object value, int mask, Object table,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 15:34:52 UTC 2024 - 7.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java
final String refreshKey = "refresh"; final String suffix = "Suffix"; CacheLoader<String, String> computeFunction = new CacheLoader<String, String>() { @Override public String load(String key) throws InterruptedException { getStartedSignal.countDown(); letGetFinishSignal.await(); return key + suffix; } };
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 86.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashing.java
static int getNext(int entry, int mask) { return entry & mask; } /** Returns a new value combining the prefix and suffix using the given mask. */ static int maskCombine(int prefix, int suffix, int mask) { return (prefix & ~mask) | (suffix & mask); } static int remove( @CheckForNull Object key, @CheckForNull Object value, int mask, Object table,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 15:34:52 UTC 2024 - 7.1K bytes - Viewed (0)