- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 677 for robot (0.03 sec)
-
cmd/signature-v4-utils.go
owner := cred.AccessKey == globalActiveCred.AccessKey || (cred.ParentUser == globalActiveCred.AccessKey && cred.AccessKey != siteReplicatorSvcAcc) if owner && !globalAPIConfig.permitRootAccess() { // We disable root access and its service accounts if asked for. return cred, owner, ErrAccessKeyDisabled } if _, ok := claims[policy.SessionPolicyName]; ok { owner = false } return cred, owner, ErrNone }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 9.1K bytes - Viewed (0) -
internal/lock/lock_windows.go
return path default: pathbuf[w] = '\\' w++ for ; r < n && !os.IsPathSeparator(path[r]); r++ { pathbuf[w] = path[r] w++ } } } // A drive's root directory needs a trailing \ if w == len(`\\?\c:`) { pathbuf[w] = '\\' w++ } return string(pathbuf[:w]) } // Open - perm param is ignored, on windows file perms/NT acls
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 18 18:08:15 UTC 2023 - 7.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
// add anchors for all of the headings for (Element heading : document.body().select("h2,h3,h4")) { String anchorName = heading.text().toLowerCase(Locale.ROOT).replaceAll(" ", "-"); heading.attr("id", anchorName); } } public void setJqueryFiles(Set<File> jqueryFiles) { this.jqueryFiles = jqueryFiles; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 03 05:02:20 UTC 2024 - 9.9K bytes - Viewed (0) -
CHANGELOG.md
with these curl arguments: ``` curl \ --http2-prior-knowledge \ --proxy localhost:8888 \ --proxytunnel \ http://squareup.com/robots.txt ``` * Fix: Support executing OkHttp on kotlin-stdlib versions as old as 1.4. The library still builds on up-to-date Kotlin releases (1.6.21) but no longer needs that version as a runtime dependency.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 18 01:31:39 UTC 2024 - 21.4K bytes - Viewed (0) -
mvnw
exit 1 fi if [ -z "$JAVA_HOME" ]; then echo "Warning: JAVA_HOME environment variable is not set." >&2 fi # traverses directory structure from process work directory to filesystem root # first directory with .mvn subdirectory is considered project base directory find_maven_basedir() { if [ -z "$1" ]; then echo "Path not specified to find_maven_basedir" >&2 return 1 fi
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/PACTest.java
byte[] expanded = PacMac.expandNFold(string.getBytes(StandardCharsets.US_ASCII), n / 8); Assert.assertEquals(expect, Hexdump.toHexString(expanded).toLowerCase(Locale.ROOT)); } @Test public void testParseSPENGOToken() throws Exception { /* negTokenInit mechTypes: 2 items MechType: 1.2.840.113554.1.2.2 (KRB5 - Kerberos 5)
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Oct 01 12:01:17 UTC 2023 - 22.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
context.installationDirectory = requireNonNull(getInstallationDirectory(context)); context.userHomeDirectory = requireNonNull(getUserHomeDirectory(context)); // top/root context.topDirectory = requireNonNull(getTopDirectory(context)); context.rootDirectory = getRootDirectory(context); // options List<O> parsedOptions = parseCliOptions(context);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
docs/tls/README.md
* A certificate signed by a CA contains information about the issued identity (e.g. name, expiry, public key) and any intermediate certificates. The root CA is not included. ## 3. Generate and use Self-signed Keys and Certificates with MinIO This section describes how to generate a self-signed certificate using various tools:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 8.4K bytes - Viewed (0) -
docs/pl/docs/tutorial/first-steps.md
## Podsumowanie * Zaimportuj `FastAPI`. * Stwórz instancję `app`. * Dodaj **dekorator operacji na ścieżce** (taki jak `@app.get("/")`). * Napisz **funkcję obsługującą ścieżkę** (taką jak `def root(): ...` powyżej).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:51:30 UTC 2024 - 9.6K bytes - Viewed (0) -
common-protos/k8s.io/api/core/v1/generated.proto
// +optional optional int64 runAsGroup = 6; // Indicates that the container must run as a non-root user. // If true, the Kubelet will validate the image at runtime to ensure that it // does not run as UID 0 (root) and fail to start the container if it does. // If unset or false, no such validation will be performed.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 255.8K bytes - Viewed (0)