- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for godinu (0.2 sec)
-
src/main/resources/fess_label_pl.properties
labels.searchlog_log_type_search_count_hour=Liczba wyszukiwań/godzinę labels.searchlog_log_type_search_count_day=Liczba wyszukiwań/dzień labels.searchlog_log_type_search_user_hour=Liczba użytkowników/godzinę labels.searchlog_log_type_search_user_day=Liczba użytkowników/dzień labels.searchlog_log_type_search_reqtimeavg_hour=Średni czas żądania/godzinę labels.searchlog_log_type_search_reqtimeavg_day=Średni czas żądania/dzień
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 44.6K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* * @since 20.0 */ public static final MediaType BASIC_AUDIO = createConstant(AUDIO_TYPE, "basic"); /** * Advanced Audio Coding. For more information, see <a * href="https://en.wikipedia.org/wiki/Advanced_Audio_Coding">Advanced Audio Coding</a>. * * @since 20.0 */ public static final MediaType AAC_AUDIO = createConstant(AUDIO_TYPE, "aac"); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java
public class ApacheBenchmark { private enum Impl { GUAVA { @Override public double factorialDouble(int n) { return DoubleMath.factorial(n); } @Override public int gcdInt(int a, int b) { return IntMath.gcd(a, b); } @Override public long gcdLong(long a, long b) { return LongMath.gcd(a, b); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
* domain. The author hereby disclaims copyright to this source code. */ /* * Source: * http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp * (Modified to adapt to Guava coding conventions and to use the HashFunction interface) */ package com.google.common.hash; import static com.google.common.base.Preconditions.checkPositionIndexes;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java
// reset state in case of an error so that later dispatch calls will actually do something synchronized (this) { isThreadScheduled = false; } // Log it and keep going. logger .get() .log( Level.SEVERE, "Exception while running callbacks for " + listener + " on " + executor, e);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java
* domain. The author hereby disclaims copyright to this source code. */ /* * Source: * https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp * (Modified to adapt to Guava coding conventions and to use the HashFunction interface) */ package com.google.common.hash; import static java.lang.Byte.toUnsignedInt; import com.google.errorprone.annotations.Immutable;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 5.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/UnsignedLong.java
*/ @Override public float floatValue() { if (value >= 0) { return (float) value; } // The top bit is set, which means that the float value is going to come from the top 24 bits. // So we can ignore the bottom 8, except for rounding. See doubleValue() for more. return (float) ((value >>> 1) | (value & 1)) * 2f; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
result = KuromojiCSVUtil.parse(value); assertEquals(4, result.length); assertEquals("John Doe", result[0]); assertEquals("Software Engineer", result[1]); assertEquals("******@****.***", result[2]); assertEquals("\"Loves \"\"coding\"\" and coffee\"", result[3]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
* * @since 20.0 */ public static final MediaType BASIC_AUDIO = createConstant(AUDIO_TYPE, "basic"); /** * Advanced Audio Coding. For more information, see <a * href="https://en.wikipedia.org/wiki/Advanced_Audio_Coding">Advanced Audio Coding</a>. * * @since 20.0 */ public static final MediaType AAC_AUDIO = createConstant(AUDIO_TYPE, "aac"); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
README.md
### Development Workflow 1. **Fork** the repository on GitHub 2. **Create** your feature branch: `git checkout -b feature/amazing-feature` 3. **Follow** the coding standards: `mvn formatter:format` 4. **Add** comprehensive tests for new functionality 5. **Commit** your changes: `git commit -m 'Add amazing feature'` 6. **Push** to the branch: `git push origin feature/amazing-feature`
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0)