- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 557 for load32 (0.08 sec)
-
.bazelrc
build:elinux_armhf --cpu=armhf build:elinux_armhf --copt -mfp16-format=ieee # Config-specific options should come above this line. # Load rc file written by ./configure. try-import %workspace%/.tf_configure.bazelrc try-import %workspace%/xla_configure.bazelrc # Load rc file with user-specific options. try-import %workspace%/.bazelrc.user # Here are bazelrc configs for release builds # Build TensorFlow v2.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
docs/site-replication/run-sse-kms-object-replication.sh
echo "Create bucket in source MinIO instance" ./mc mb minio1/test-bucket --insecure # Enable SSE KMS for the bucket ./mc encrypt set sse-kms minio-default-key minio1/test-bucket --insecure # Load objects to source site echo "Loading objects to source MinIO instance" ./mc cp /tmp/data/encrypted minio1/test-bucket --insecure
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
.expireAfterWrite(userCheckInterval, TimeUnit.MILLISECONDS)// .build(new CacheLoader<String, UserInfo>() { @Override public UserInfo load(final String key) throws Exception { return storeUserInfo(key); } }); searchLogLogger = LogManager.getLogger(loggerName); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 02:07:37 UTC 2024 - 21.7K bytes - Viewed (0) -
cmd/metrics.go
return } // data usage has not captured any data yet. if dataUsageInfo.LastUpdate.IsZero() { return } for bucket, usageInfo := range dataUsageInfo.BucketsUsage { stat := globalReplicationStats.Load().getLatestReplicationStats(bucket) // Total space used by bucket ch <- prometheus.MustNewConstMetric( prometheus.NewDesc( prometheus.BuildFQName(bucketNamespace, "usage", "size"), "Total bucket size",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
} private void importSystemProperties(final String fileName, final File tempFile) { try (final InputStream in = new FileInputStream(tempFile)) { ComponentUtil.getSystemProperties().load(in); } catch (final IOException e) { logger.warn("Failed to process system.properties file: {}", fileName, e); } finally { deleteTempFile(tempFile); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
docs/config/README.md
Usage scanner Data usage scanner is enabled by default. The following configuration settings allow for more staggered delay in terms of usage calculation. The scanner adapts to the system speed and completely pauses when the system is under load. It is possible to adjust the speed of the scanner and thereby the latency of updates being reflected. The delays between each operation of the scanner can be adjusted by the `mc admin config set alias/ delay=15.0`. By default the value is `10.0`....
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 17.9K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
.expireAfterWrite(5, TimeUnit.MINUTES).build(new CacheLoader<ArtifactType, Artifact[]>() { @Override public Artifact[] load(final ArtifactType key) { final List<Artifact> list = new ArrayList<>(); for (final String url : getRepositories()) { if (url.endsWith(".yaml")) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String XERCES_FEATURE_PREFIX = "http://apache.org/xml/features/"; public static final String LOAD_EXTERNAL_DTD_FEATURE = "nonvalidating/load-external-dtd"; public static final String FESEN_TYPE_CLOUD = "cloud"; public static final String FESEN_TYPE_AWS = "aws"; public static final String FESEN_USERNAME = "fesen.username";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
xpathAPICache = CacheBuilder.newBuilder().expireAfterAccess(cacheDuration, TimeUnit.MINUTES).build(new CacheLoader<String, XPathAPI>() { @Override public XPathAPI load(final String key) { if (logger.isDebugEnabled()) { logger.debug("created XPathAPI by {}", key); } return new XPathAPI();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 17.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
*/ int VALIDATION_LEVEL_STRICT = VALIDATION_LEVEL_MAVEN_4_0; /** * Gets the file model to build (with profile activation). * If not set, model source will be used to load file model. * * @return The file model to build or {@code null} if not set. * @since 4.0.0 */ Model getFileModel(); /** * Set the file model with profile activation *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.9K bytes - Viewed (0)