Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 578 for Marche (0.05 sec)

  1. cmd/bucket-stats.go

    1. return len(brs.Stats) == 0 && brs.ReplicaSize == 0
    2. }
    3.  
    4. // Clone creates a new BucketReplicationStats copy
    5. func (brs BucketReplicationStats) Clone() (c BucketReplicationStats) {
    6. // This is called only by replicationStats cache and already holds a
    7. // read lock before calling Clone()
    8.  
    9. c = brs
    10. // We need to copy the map, so we do not reference the one in `brs`.
    11. c.Stats = make(map[string]*BucketReplicationStat, len(brs.Stats))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 11:39:51 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

    1. import com.fasterxml.jackson.core.JsonProcessingException;
    2. import com.fasterxml.jackson.databind.ObjectMapper;
    3. import com.google.common.base.CaseFormat;
    4. import com.google.common.cache.CacheBuilder;
    5. import com.google.common.cache.CacheLoader;
    6. import com.google.common.cache.LoadingCache;
    7.  
    8. import jakarta.annotation.PostConstruct;
    9.  
    10. public class SearchLogHelper {
    11. private static final Logger logger = LogManager.getLogger(SearchLogHelper.class);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

    1. */
    2. package org.apache.maven.model.interpolation.reflection;
    3.  
    4. import java.lang.reflect.Method;
    5. import java.lang.reflect.Modifier;
    6. import java.util.Hashtable;
    7. import java.util.Map;
    8.  
    9. /**
    10. * A cache of introspection information for a specific class instance.
    11. * Keys {@link Method} objects by a concatenation of the
    12. * method name and the names of classes that make up the parameters.
    13. *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    1. val foundTestCoverage = testCoverages.firstOrNull {
    2. it.testType == TestType.platform &&
    3. it.os == testCoverage.os &&
    4. it.arch == testCoverage.arch &&
    5. it.buildJvm == testCoverage.buildJvm
    6. }
    7. foundTestCoverage?.let {
    8. buildProjectClassTimes[it.asId(MASTER_CHECK_CONFIGURATION)]
    9. }?.also {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Aug 29 11:04:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/RemovalNotificationTest.java

    1. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    2. * See the License for the specific language governing permissions and
    3. * limitations under the License.
    4. */
    5.  
    6. package com.google.common.cache;
    7.  
    8. import com.google.common.testing.EqualsTester;
    9. import junit.framework.TestCase;
    10.  
    11. /**
    12. * Unit tests of {@link RemovalNotification}.
    13. *
    14. * @author Ben Yu
    15. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

    1. /**
    2. * A container for data that is specific to a session.
    3. * All components may use this storage to associate arbitrary data with a session.
    4. * <p>
    5. * Unlike a cache, this session data is not subject to purging. For this same reason, session data should also not be
    6. * abused as a cache (i.e. for storing values that can be re-calculated) to avoid memory exhaustion.
    7. * <p>
    8. * <strong>Note:</strong> Actual implementations must be thread-safe.
    9. *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/RemovalNotificationTest.java

    1. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    2. * See the License for the specific language governing permissions and
    3. * limitations under the License.
    4. */
    5.  
    6. package com.google.common.cache;
    7.  
    8. import com.google.common.testing.EqualsTester;
    9. import junit.framework.TestCase;
    10.  
    11. /**
    12. * Unit tests of {@link RemovalNotification}.
    13. *
    14. * @author Ben Yu
    15. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_extending_openapi/test_tutorial001.py

    1. "operationId": "read_items_items__get",
    2. }
    3. }
    4. },
    5. }
    6. openapi_schema = response.json()
    7. # Request again to test the custom cache
    8. response = client.get("/openapi.json")
    9. assert response.status_code == 200, response.text
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. internal/http/headers.go

    1. Location = "Location"
    2. CacheControl = "Cache-Control"
    3. ContentDisposition = "Content-Disposition"
    4. Authorization = "Authorization"
    5. Action = "Action"
    6. Range = "Range"
    7. )
    8.  
    9. // Non standard S3 HTTP response constants
    10. const (
    11. XCache = "X-Cache"
    12. XCacheLookup = "X-Cache-Lookup"
    13. )
    14.  
    15. // Standard S3 HTTP request constants
    16. const (
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 28 15:31:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. .gitignore

    1. .DS_Store
    2. *.[56789ao]
    3. *.a[56789o]
    4. *.so
    5. *.pyc
    6. ._*
    7. .nfs.*
    8. [56789a].out
    9. *~
    10. *.orig
    11. *.rej
    12. *.exe
    13. .*.swp
    14. core
    15. *.cgo*.go
    16. *.cgo*.c
    17. _cgo_*
    18. _obj
    19. _test
    20. _testmain.go
    21.  
    22. /VERSION.cache
    23. /bin/
    24. /build.out
    25. /doc/articles/wiki/*.bin
    26. /goinstall.log
    27. /last-change
    28. /misc/cgo/life/run.out
    29. /misc/cgo/stdio/run.out
    30. /misc/cgo/testso/main
    31. /pkg/
    32. /src/*.*/
    33. /src/cmd/cgo/zdefaultcc.go
    34. /src/cmd/dist/dist
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Jul 23 19:05:35 UTC 2024
    - 958 bytes
    - Viewed (0)
Back to top