Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 578 for Marche (0.04 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/TestStringSetMultimapGenerator.java

    1. mapEntry("three", "March"),
    2. mapEntry("four", "April"),
    3. mapEntry("five", "May"));
    4. }
    5.  
    6. @Override
    7. public SampleElements<String> sampleKeys() {
    8. return new SampleElements<>("one", "two", "three", "four", "five");
    9. }
    10.  
    11. @Override
    12. public SampleElements<String> sampleValues() {
    13. return new SampleElements<>("January", "February", "March", "April", "May");
    14. }
    15.  
    16. @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/cachedirs/README.txt

    1. 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)
  3. src/main/resources/fess_config.properties

    1. crawler.document.file.default.exclude.index.patterns=
    2. crawler.document.file.default.include.search.patterns=
    3. crawler.document.file.default.exclude.search.patterns=
    4.  
    5. # cache
    6. crawler.document.cache.enabled=true
    7. crawler.document.cache.max.size=2621440
    8. 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)
  4. okhttp/src/test/java/okhttp3/EventListenerTest.kt

    1. }
    2.  
    3. private fun enableCache(): Cache? {
    4. cache = makeCache()
    5. client = client.newBuilder().cache(cache).build()
    6. return cache
    7. }
    8.  
    9. private fun makeCache(): Cache {
    10. val cacheDir = File.createTempFile("cache-", ".dir")
    11. cacheDir.delete()
    12. return Cache(cacheDir, (1024 * 1024).toLong())
    13. }
    14.  
    15. 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)
  5. docs/em/docs/deployment/docker.md

    1. ๐Ÿ‘‰ ๐Ÿ“ **๐Ÿšซ ๐Ÿ”€ ๐Ÿ›Ž**, โ˜ ๐Ÿ”œ ๐Ÿ” โšซ๏ธ &amp; โš™๏ธ **๐Ÿ’พ** ๐Ÿ‘‰ ๐Ÿ”, ๐Ÿ› ๏ธ ๐Ÿ’พ โญ ๐Ÿ” ๐Ÿ’โ€โ™‚๏ธ.
    2.  
    3. 4๏ธโƒฃ. โŽ ๐Ÿ“ฆ ๐Ÿ”— ๐Ÿ“„ ๐Ÿ“.
    4.  
    5. `--no-cache-dir` ๐ŸŽ› ๐Ÿ’ฌ `pip` ๐Ÿšซ ๐Ÿ–Š โฌ ๐Ÿ“ฆ ๐ŸŒ, ๐Ÿ‘ˆ ๐Ÿ•ด ๐Ÿšฅ `pip` ๐Ÿ”œ ๐Ÿƒ ๐Ÿ”„ โŽ ๐ŸŽ ๐Ÿ“ฆ, โœ‹๏ธ ๐Ÿ‘ˆ ๐Ÿšซ ๐Ÿ’ผ ๐Ÿ•โ” ๐Ÿ‘ท โฎ๏ธ ๐Ÿ“ฆ.
    6.  
    7. /// note
    8.  
    9. `--no-cache-dir` ๐Ÿ•ด ๐Ÿ”— `pip`, โšซ๏ธ โœ”๏ธ ๐Ÿ•ณ โฎ๏ธ โ˜ โš–๏ธ ๐Ÿ“ฆ.
    10.  
    11. ///
    12.  
    13. `--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)
  6. android/guava/src/com/google/common/cache/ReferenceEntry.java

    1. * or implied. See the License for the specific language governing permissions and limitations under
    2. * the License.
    3. */
    4.  
    5. package com.google.common.cache;
    6.  
    7. import com.google.common.annotations.GwtIncompatible;
    8. import com.google.common.cache.LocalCache.ValueReference;
    9. import javax.annotation.CheckForNull;
    10.  
    11. /**
    12. * An entry in a reference map.
    13. *
    14. * <p>Entries in the map can be in the following states:
    15. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/net_test.go

    1. assert.Equal(t, ztunnelServer.deletedPods.Load(), 1)
    2. assert.Equal(t, nlDeps.DelInpodMarkIPRuleCnt.Load(), 1)
    3. assert.Equal(t, nlDeps.DelLoopbackRoutesCnt.Load(), 1)
    4. // make sure the uid was taken from cache and netns closed
    5. netns := fixture.podNsMap.Take(string(pod.UID))
    6. assert.Equal(t, nil, netns)
    7.  
    8. // run gc to clean up ns:
    9.  
    10. //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)
  8. guava/src/com/google/common/cache/LocalCache.java

    1. @CheckForNull transient Cache<K, V> delegate;
    2.  
    3. ManualSerializationProxy(LocalCache<K, V> cache) {
    4. this(
    5. cache.keyStrength,
    6. cache.valueStrength,
    7. cache.keyEquivalence,
    8. cache.valueEquivalence,
    9. cache.expireAfterWriteNanos,
    10. cache.expireAfterAccessNanos,
    11. cache.maxWeight,
    12. 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)
  9. Dockerfile.release.fips

    1. FROM golang:1.22-alpine AS build
    2.  
    3. ARG TARGETARCH
    4. ARG RELEASE
    5.  
    6. ENV GOPATH=/go
    7. ENV CGO_ENABLED=0
    8.  
    9. # Install curl and minisign
    10. RUN apk add -U --no-cache ca-certificates && \
    11. apk add -U --no-cache curl && \
    12. go install aead.dev/minisign/cmd/minisign@v0.2.1
    13.  
    14. # Download minio binary and signature files
    15. 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)
  10. cmd/bucket-encryption.go

    1. package cmd
    2.  
    3. import (
    4. "errors"
    5. "io"
    6.  
    7. sse "github.com/minio/minio/internal/bucket/encryption"
    8. )
    9.  
    10. // BucketSSEConfigSys - in-memory cache of bucket encryption config
    11. type BucketSSEConfigSys struct{}
    12.  
    13. // NewBucketSSEConfigSys - Creates an empty in-memory bucket encryption configuration cache
    14. func NewBucketSSEConfigSys() *BucketSSEConfigSys {
    15. return &BucketSSEConfigSys{}
    16. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top