- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 717 for reboot (0.12 sec)
-
fuzzing/fuzzingserver-test.sh
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Mar 26 02:01:32 UTC 2019 - 673 bytes - Viewed (0) -
cmd/erasure-healing-common.go
// Beginning of unix time is treated as sentinel value here. var ( timeSentinel = time.Unix(0, 0).UTC() timeSentinel1970 = time.Unix(0, 1).UTC() // 1970 used for special cases when xlmeta.version == 0 ) // Boot modTimes up to disk count, setting the value to time sentinel. func bootModtimes(diskCount int) []time.Time { modTimes := make([]time.Time, diskCount) // Boots up all the modtimes. for i := range modTimes {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 12.7K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
Optional<BinaryNode> root = Optional.absent(); for (int i = 0; i < size; i++) { root = Optional.of(new BinaryNode(rng.nextInt(), root, Optional.<BinaryNode>absent())); } return root; } }, ALL_RIGHT { @Override Optional<BinaryNode> createTree(int size, Random rng) { Optional<BinaryNode> root = Optional.absent();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 26 19:18:53 UTC 2019 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
public DfsReferralData resolve ( CIFSContext tf, String domain, String root, String path ) throws SmbAuthException { return resolve(tf, domain, root, path, 5); } private DfsReferralData resolve ( CIFSContext tf, String domain, String root, String path, int depthLimit ) throws SmbAuthException { if ( tf.getConfig().isDfsDisabled() || root == null || root.equals("IPC$") || depthLimit <= 0 ) { return null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
docs/em/docs/advanced/behind-a-proxy.md
### ๐ `root_path` ๐ ๐, ๐ ๐ช โ๏ธ ๐ โธ ๐ `--root-path` ๐: <div class="termy"> ```console $ uvicorn main:app --root-path /api/v1 <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div> ๐ฅ ๐ โ๏ธ Hypercorn, โซ๏ธ โ๏ธ ๐ `--root-path`. /// note | "๐ก โน" ๐ซ ๐ง ๐ฌ `root_path` ๐ โ๏ธ ๐ผ. & `--root-path` ๐ โธ ๐ ๐ ๐ `root_path`. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
Optional<BinaryNode> root = Optional.absent(); for (int i = 0; i < size; i++) { root = Optional.of(new BinaryNode(rng.nextInt(), root, Optional.<BinaryNode>absent())); } return root; } }, ALL_RIGHT { @Override Optional<BinaryNode> createTree(int size, Random rng) { Optional<BinaryNode> root = Optional.absent();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 26 19:18:53 UTC 2019 - 4.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PrefixedObjectValueSource.java
/** * Wrap the specified root object, allowing the specified expression prefix. * @param prefix the prefix. * @param root the root of the graph. */ public PrefixedObjectValueSource(String prefix, Object root) { super(new PrefixedValueSourceWrapper(new ObjectBasedValueSource(root), prefix)); } /** * Wrap the specified root object, allowing the specified list of expression
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
docs/pt/docs/advanced/behind-a-proxy.md
Para conseguir isso, vocรช pode usar a opรงรฃo de linha de comando `--root-path` assim: <div class="termy"> ```console $ fastapi run main.py --root-path /api/v1 <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div> Se vocรช usar Hypercorn, ele tambรฉm tem a opรงรฃo `--root-path`. /// note | "Detalhes Tรฉcnicos"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:28:18 UTC 2024 - 12.2K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/flaking-test.yaml
name: Flaking Test description: Report flaky tests or jobs in Kubernetes CI labels: kind/flake body: - type: textarea id: jobs attributes: label: Which jobs are flaking? description: | Please only use this template for submitting reports about flaky tests or jobs (pass or fail with no underlying change in code) in Kubernetes CI. Links to go.k8s.io/triage and/or links to specific failures in spyglass are appreciated.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Oct 05 16:55:38 UTC 2021 - 1.4K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java
} /** * Creates a new source backed by the specified string. * * @param content The String representation, may be empty or {@code null}. * @param location The location to report for this use, may be {@code null}. */ public StringSource(CharSequence content, String location) { this.content = (content != null) ? content.toString() : "";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0)