- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 578 for Marche (0.04 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/google/TestStringSetMultimapGenerator.java
- mapEntry("three", "March"),
- mapEntry("four", "April"),
- mapEntry("five", "May"));
- }
- @Override
- public SampleElements<String> sampleKeys() {
- return new SampleElements<>("one", "two", "three", "four", "five");
- }
- @Override
- public SampleElements<String> sampleValues() {
- return new SampleElements<>("January", "February", "March", "April", "May");
- }
- @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/cachedirs/README.txt
- Directory for image cache....
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Sep 14 06:00:28 UTC 2013 - 27 bytes - Viewed (0) -
src/main/resources/fess_config.properties
- crawler.document.file.default.exclude.index.patterns=
- crawler.document.file.default.include.search.patterns=
- crawler.document.file.default.exclude.search.patterns=
- # cache
- crawler.document.cache.enabled=true
- crawler.document.cache.max.size=2621440
- crawler.document.cache.supported.mimetypes=text/html
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/EventListenerTest.kt
- }
- private fun enableCache(): Cache? {
- cache = makeCache()
- client = client.newBuilder().cache(cache).build()
- return cache
- }
- private fun makeCache(): Cache {
- val cacheDir = File.createTempFile("cache-", ".dir")
- cacheDir.delete()
- return Cache(cacheDir, (1024 * 1024).toLong())
- }
- companion object {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 56.9K bytes - Viewed (2) -
docs/em/docs/deployment/docker.md
- ๐ ๐ **๐ซ ๐ ๐**, โ ๐ ๐ โซ๏ธ & โ๏ธ **๐พ** ๐ ๐, ๐ ๏ธ ๐พ โญ ๐ ๐โโ๏ธ.
- 4๏ธโฃ. โ ๐ฆ ๐ ๐ ๐.
- `--no-cache-dir` ๐ ๐ฌ `pip` ๐ซ ๐ โฌ ๐ฆ ๐, ๐ ๐ด ๐ฅ `pip` ๐ ๐ ๐ โ ๐ ๐ฆ, โ๏ธ ๐ ๐ซ ๐ผ ๐โ ๐ท โฎ๏ธ ๐ฆ.
- /// note
- `--no-cache-dir` ๐ด ๐ `pip`, โซ๏ธ โ๏ธ ๐ณ โฎ๏ธ โ โ๏ธ ๐ฆ.
- ///
- `--upgrade` ๐ ๐ฌ `pip` โป ๐ฆ ๐ฅ ๐ซ โช โ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/ReferenceEntry.java
- * or implied. See the License for the specific language governing permissions and limitations under
- * the License.
- */
- package com.google.common.cache;
- import com.google.common.annotations.GwtIncompatible;
- import com.google.common.cache.LocalCache.ValueReference;
- import javax.annotation.CheckForNull;
- /**
- * An entry in a reference map.
- *
- * <p>Entries in the map can be in the following states:
- *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 3.5K bytes - Viewed (0) -
cni/pkg/nodeagent/net_test.go
- assert.Equal(t, ztunnelServer.deletedPods.Load(), 1)
- assert.Equal(t, nlDeps.DelInpodMarkIPRuleCnt.Load(), 1)
- assert.Equal(t, nlDeps.DelLoopbackRoutesCnt.Load(), 1)
- // make sure the uid was taken from cache and netns closed
- netns := fixture.podNsMap.Take(string(pod.UID))
- assert.Equal(t, nil, netns)
- // run gc to clean up ns:
- //revive:disable-next-line:call-to-gc Just a test that we are cleaning up the netns
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jul 25 16:13:38 UTC 2024 - 10.7K bytes - Viewed (0) -
guava/src/com/google/common/cache/LocalCache.java
- @CheckForNull transient Cache<K, V> delegate;
- ManualSerializationProxy(LocalCache<K, V> cache) {
- this(
- cache.keyStrength,
- cache.valueStrength,
- cache.keyEquivalence,
- cache.valueEquivalence,
- cache.expireAfterWriteNanos,
- cache.expireAfterAccessNanos,
- cache.maxWeight,
- cache.weigher,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 149.2K bytes - Viewed (0) -
Dockerfile.release.fips
- FROM golang:1.22-alpine AS build
- ARG TARGETARCH
- ARG RELEASE
- ENV GOPATH=/go
- ENV CGO_ENABLED=0
- # Install curl and minisign
- RUN apk add -U --no-cache ca-certificates && \
- apk add -U --no-cache curl && \
- go install aead.dev/minisign/cmd/minisign@v0.2.1
- # Download minio binary and signature files
- RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.fips -o /go/bin/minio && \
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 15 23:10:23 UTC 2024 - 2.9K bytes - Viewed (0) -
cmd/bucket-encryption.go
- package cmd
- import (
- "errors"
- "io"
- sse "github.com/minio/minio/internal/bucket/encryption"
- )
- // BucketSSEConfigSys - in-memory cache of bucket encryption config
- type BucketSSEConfigSys struct{}
- // NewBucketSSEConfigSys - Creates an empty in-memory bucket encryption configuration cache
- func NewBucketSSEConfigSys() *BucketSSEConfigSys {
- return &BucketSSEConfigSys{}
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 1.7K bytes - Viewed (0)