- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 23 for setCity (0.05 seconds)
-
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
result.setBusinessCategory(DfTypeUtil.toString(source.get("businessCategory"))); result.setCarLicense(DfTypeUtil.toString(source.get("carLicense"))); result.setCity(DfTypeUtil.toString(source.get("city"))); result.setDepartmentNumber(DfTypeUtil.toString(source.get("departmentNumber"))); result.setDescription(DfTypeUtil.toString(source.get("description")));
Created: 2025-12-20 09:19 - Last Modified: 2025-03-15 06:53 - 12K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
registerModifiedProperty("carLicense"); this.carLicense = value; } public String getCity() { checkSpecifiedProperty("city"); return convertEmptyToNull(city); } public void setCity(String value) { registerModifiedProperty("city"); this.city = value; } public String getDepartmentNumber() {
Created: 2025-12-20 09:19 - Last Modified: 2025-03-15 06:53 - 22.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.java
"businessCategory"); setupEpg(_epgMap, et -> ((User) et).getCarLicense(), (et, vl) -> ((User) et).setCarLicense(DfTypeUtil.toString(vl)), "carLicense"); setupEpg(_epgMap, et -> ((User) et).getCity(), (et, vl) -> ((User) et).setCity(DfTypeUtil.toString(vl)), "city"); setupEpg(_epgMap, et -> ((User) et).getDepartmentNumber(), (et, vl) -> ((User) et).setDepartmentNumber(DfTypeUtil.toString(vl)), "departmentNumber");
Created: 2025-12-20 09:19 - Last Modified: 2025-03-15 06:53 - 27K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
setAttributeValue(result, fessConfig.getLdapAttrPostalAddress(), o -> user.setPostalAddress(o.toString())); setAttributeValue(result, fessConfig.getLdapAttrCity(), o -> user.setCity(o.toString())); setAttributeValue(result, fessConfig.getLdapAttrTeletexTerminalIdentifier(), o -> user.setTeletexTerminalIdentifier(o.toString()));
Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 86.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/math/BigIntegerMathTest.java
assertThat(ZERO.setBit(result)).isAtMost(x); assertThat(ZERO.setBit(result + 1)).isGreaterThan(x); } } } public void testLog2Ceiling() { for (BigInteger x : POSITIVE_BIGINTEGER_CANDIDATES) { for (RoundingMode mode : asList(CEILING, UP)) { int result = BigIntegerMath.log2(x, mode); assertThat(ZERO.setBit(result)).isAtLeast(x);
Created: 2025-12-26 12:43 - Last Modified: 2025-11-19 01:35 - 27.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java
for (long value : TEST_LONGS) { BigInteger expected = (value >= 0) ? BigInteger.valueOf(value) : BigInteger.valueOf(value).add(BigInteger.ZERO.setBit(64)); assertWithMessage(UnsignedLongs.toString(value)) .that(UnsignedLong.fromLongBits(value).bigIntegerValue()) .isEqualTo(expected); } } public void testValueOfLong() {
Created: 2025-12-26 12:43 - Last Modified: 2025-12-11 20:45 - 10.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/math/MathBenchmarking.java
int digits = RANDOM_SOURCE.nextInt(numBits); if (digits == 0) { return new BigInteger(1, RANDOM_SOURCE); } else { return new BigInteger(digits, RANDOM_SOURCE).setBit(digits); } } /** * Equivalent to calling randomPositiveBigInteger(numBits) and then flipping the sign with 50% * probability. */ static BigInteger randomNonZeroBigInteger(int numBits) {
Created: 2025-12-26 12:43 - Last Modified: 2025-08-10 19:54 - 4.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/UnsignedLongTest.java
for (long value : TEST_LONGS) { BigInteger expected = (value >= 0) ? BigInteger.valueOf(value) : BigInteger.valueOf(value).add(BigInteger.ZERO.setBit(64)); assertWithMessage(UnsignedLongs.toString(value)) .that(UnsignedLong.fromLongBits(value).bigIntegerValue()) .isEqualTo(expected); } } public void testValueOfLong() {
Created: 2025-12-26 12:43 - Last Modified: 2025-12-11 20:45 - 10.4K bytes - Click Count (0) -
guava/src/com/google/common/math/BigIntegerMath.java
* * @throws IllegalArgumentException if {@code x <= 0} * @since 20.0 */ public static BigInteger ceilingPowerOfTwo(BigInteger x) { return BigInteger.ZERO.setBit(log2(x, CEILING)); } /** * Returns the largest power of two less than or equal to {@code x}. This is equivalent to {@code * BigInteger.valueOf(2).pow(log2(x, FLOOR))}. *Created: 2025-12-26 12:43 - Last Modified: 2025-08-07 16:05 - 18.8K bytes - Click Count (0) -
src/bytes/bytes.go
n := 0 wasSpace := 1 // setBits is used to track which bits are set in the bytes of s. setBits := uint8(0) for i := 0; i < len(s); i++ { r := s[i] setBits |= r isSpace := int(asciiSpace[r]) n += wasSpace & ^isSpace wasSpace = isSpace } if setBits >= utf8.RuneSelf { // Some runes in the input slice are not ASCII.
Created: 2025-12-30 11:13 - Last Modified: 2025-09-16 16:42 - 35.5K bytes - Click Count (0)