- Sort Score
- Result 10 results
- Languages All
Results 1571 - 1580 of 1,862 for 10 (0.07 sec)
-
cmd/peer-rest-server.go
s.writeErrorResponse(w, errors.New("profiler name is missing")) return } globalProfilerMu.Lock() defer globalProfilerMu.Unlock() if globalProfiler == nil { globalProfiler = make(map[string]minioProfiler, 10) } // Stop profiler of all types if already running for k, v := range globalProfiler { for _, p := range profiles { if p == k { v.Stop() delete(globalProfiler, k) } } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Doubles.java
* * <p>See the Guava User Guide article on <a * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>. * * @author Kevin Bourrillion * @since 1.0 */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public final class Doubles extends DoublesMethodsForWeb { private Doubles() {} /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 28.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
public class PluginHelper { private static final Logger logger = LogManager.getLogger(PluginHelper.class); protected LoadingCache<ArtifactType, Artifact[]> availableArtifacts = CacheBuilder.newBuilder().maximumSize(10) .expireAfterWrite(5, TimeUnit.MINUTES).build(new CacheLoader<ArtifactType, Artifact[]>() { @Override public Artifact[] load(final ArtifactType key) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
guava/src/com/google/common/hash/HashCode.java
return fromBytesNoCopy(bytes); } private static int decode(char ch) { if (ch >= '0' && ch <= '9') { return ch - '0'; } if (ch >= 'a' && ch <= 'f') { return ch - 'a' + 10; } throw new IllegalArgumentException("Illegal hexadecimal character: " + ch); } /** * Returns {@code true} if {@code object} is a {@link HashCode} instance with the identical byte
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 19:54:59 UTC 2024 - 12.6K bytes - Viewed (0) -
.github/actions/people/app/main.py
nodes { createdAt author { login avatarUrl url } isAnswer replies(first: 10) { nodes { createdAt author { login avatarUrl url } }
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:13:50 UTC 2024 - 19.2K bytes - Viewed (1) -
internal/ringbuffer/ring_buffer_test.go
rb.Reset() done := make(chan struct{}) go func() { defer close(done) time.Sleep(10 * time.Millisecond) fn() }() rb.CloseWithError(errors.New("test error")) <-done rb.Reset() done = make(chan struct{}) go func() { defer close(done) fn() }() time.Sleep(10 * time.Millisecond) rb.CloseWithError(errors.New("test error")) <-done } testCancel(func() {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 15 00:11:04 UTC 2024 - 26.8K bytes - Viewed (0) -
docs/em/docs/advanced/settings.md
## â đ đž âĢī¸ 5ī¸âŖđ â đ â âĒī¸âĄī¸ đ, âŠī¸ âī¸ đ đ âŽī¸ `settings` đ âī¸ đ. đ đĒ â´ī¸ â âŽī¸ đŦ, âĢī¸ đļ ⊠đ đ âŽī¸ đ đ đ â. ### đ đ đ âĒī¸âĄī¸ âŽī¸ đŧ, đ `config.py` đ đĒ đ đ: ```Python hl_lines="10" {!../../docs_src/settings/app02/config.py!} ``` đ đ đ đĨ đĢ â đĸ đ `settings = Settings()`. ### đ đą đ đ đĨ â đ đ đ¨ đ `config.Settings()`. ```Python hl_lines="5 11-12"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashSet.java
} } else { elements[dstIndex] = null; entries[dstIndex] = 0; } } int firstEntryIndex() { return isEmpty() ? -1 : 0; } int getSuccessor(int entryIndex) { return (entryIndex + 1 < size) ? entryIndex + 1 : -1; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate(new char[] {}, 1, new char[] {}); testRotate(new char[] {'1'}, -2, new char[] {'1'}); testRotate(new char[] {'1'}, -1, new char[] {'1'}); testRotate(new char[] {'1'}, 0, new char[] {'1'}); testRotate(new char[] {'1'}, 1, new char[] {'1'}); testRotate(new char[] {'1'}, 2, new char[] {'1'}); testRotate(new char[] {'1', '2'}, -3, new char[] {'2', '1'});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 25.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
* occupy more memory than necessary; to trim memory usage, build using {@code * builder.build().trimmed()}. */ public static Builder builder() { return new Builder(10); } /** * A builder for {@link ImmutableLongArray} instances; obtained using {@link * ImmutableLongArray#builder}. */ public static final class Builder { private long[] array;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 22.3K bytes - Viewed (0)