- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 1,026 for Access (0.12 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
protected int numOfThread = 10; protected int maxThreadCheckCount = 20; /** a max depth for crawling. -1 is no depth check. */ protected int maxDepth = -1; /** a max count to access urls. 0 is no limit to access it. */ protected long maxAccessCount = 0; public String getSessionId() { return sessionId; } public void setSessionId(final String sessionId) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
throw e; } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to access to {}", request.getUrl(), e); } if (listener != null) { listener.onException(this, request, count, e); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.4K bytes - Viewed (0) -
helm/minio/templates/_helper_custom_command.txt
set -e ; # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ; set +e ; # The connections to minio are allowed to fail. echo "Connecting to MinIO server: $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT" ; MC_COMMAND="${MC} alias set myminio $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT $ACCESS $SECRET" ; $MC_COMMAND ; STATUS=$? ; until [ $STATUS = 0 ] do
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Feb 19 20:34:14 UTC 2022 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenAlias.java
package jcifs.dcerpc.msrpc; @SuppressWarnings ( "javadoc" ) public class MsrpcSamrOpenAlias extends samr.SamrOpenAlias { public MsrpcSamrOpenAlias ( SamrDomainHandle handle, int access, int rid, SamrAliasHandle aliasHandle ) { super(handle, access, rid, aliasHandle); this.ptype = 0; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
manifests/addons/values-grafana.yaml
- name: Prometheus type: prometheus orgId: 1 url: http://prometheus:9090 access: proxy isDefault: true jsonData: timeInterval: 15s editable: true - name: Loki type: loki orgId: 1 url: http://loki:3100 access: proxy isDefault: false jsonData: timeInterval: 5s
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 12 20:46:28 UTC 2024 - 1.7K bytes - Viewed (0) -
architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md
# ADR-0003 - Avoid introducing Groovy types to public API ## Date 2024-01-12 ## Context Gradle's public API requires equal access from all JVM-based languages. Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library. Historically, Gradle has shipped with some Groovy types in very prominent APIs.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sun Mar 10 20:38:06 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/SamrDomainHandle.java
DcerpcHandle handle; public SamrDomainHandle(DcerpcHandle handle, SamrPolicyHandle policyHandle, int access, rpc.sid_t sid) throws IOException { this.handle = handle; MsrpcSamrOpenDomain rpc = new MsrpcSamrOpenDomain(policyHandle, access, sid, this); handle.sendrecv(rpc); if (rpc.retval != 0) throw new SmbException(rpc.retval, false); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.7K bytes - Viewed (0) -
docs/bigdata/README.md
``` cat ${HADOOP_CONF_DIR}/core-site.xml | kv-pairify | grep "s3a" fs.s3a.access.key=minio fs.s3a.secret.key=minio123 fs.s3a.path.style.access=true fs.s3a.block.size=512M fs.s3a.buffer.dir=${hadoop.tmp.dir}/s3a fs.s3a.committer.magic.enabled=false fs.s3a.committer.name=directory fs.s3a.committer.staging.abort.pending.uploads=true
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLsarOpenPolicy2.java
*/ package jcifs.smb1.dcerpc.msrpc; public class MsrpcLsarOpenPolicy2 extends lsarpc.LsarOpenPolicy2 { public MsrpcLsarOpenPolicy2(String server, int access, LsaPolicyHandle policyHandle) { super(server, new lsarpc.LsarObjectAttributes(), access, policyHandle); object_attributes.length = 24; lsarpc.LsarQosInfo qos = new lsarpc.LsarQosInfo(); qos.length = 12; qos.impersonation_level = 2; qos.context_mode = 1;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.5K bytes - Viewed (0) -
helm/minio/templates/_helper_create_bucket.txt
ATTEMPTS=0 LIMIT=29 # Allow 30 attempts set -e # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) SECRET=$(cat /config/rootPassword) set +e # The connections to minio are allowed to fail. echo "Connecting to MinIO server: $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT" MC_COMMAND="${MC} alias set myminio $SCHEME://$MINIO_ENDPOINT:$MINIO_PORT $ACCESS $SECRET" $MC_COMMAND STATUS=$? until [ $STATUS = 0 ]; do
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jan 12 18:18:57 UTC 2024 - 3.5K bytes - Viewed (0)