- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 1,142 for stored (0.05 sec)
-
licenses/sigs.k8s.io/json/LICENSE
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jan 05 01:31:25 UTC 2022 - 12.6K bytes - Viewed (0) -
cmd/signature-v2_test.go
sort.Strings(sortedResourceList) for i := 0; i < len(resourceList); i++ { if resourceList[i] != sortedResourceList[i] { t.Errorf("Expected resourceList[%d] = \"%s\", resourceList is not correctly sorted.", i, sortedResourceList[i]) break } } } // Tests presigned v2 signature. func TestDoesPresignedV2SignatureMatch(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 14 10:08:40 UTC 2022 - 8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
* specific name, thread group or priority. The returned executor's {@link * Executor#execute(Runnable) execute()} method is called when this service is started, and should * return promptly. * * <p>The default implementation returns a new {@link Executor} that sets the name of its threads * to the string returned by {@link #serviceName} */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7.3K bytes - Viewed (0) -
CONTRIBUTING.md
contributors to follow so that we can have a chance of keeping on top of things. Some of the ideas are documented in the [Maven Wiki][maven-wiki] which might be interesting to read and for further discussion. Getting Started --------------- + Make sure you have a [JIRA account](https://issues.apache.org/jira/). + Make sure you have a [GitHub account](https://github.com/signup/free).
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sun Oct 10 09:48:27 UTC 2021 - 4.7K bytes - Viewed (0) -
docs/vi/docs/tutorial/first-steps.md
```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) <span style="color: green;">INFO</span>: Started reloader process [28720] <span style="color: green;">INFO</span>: Started server process [28722] <span style="color: green;">INFO</span>: Waiting for application startup. <span style="color: green;">INFO</span>: Application startup complete. ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.1K bytes - Viewed (0) -
ci/official/utilities/code_check_full.bats
license_query "deps($LICENSES_TARGET)" > $BATS_TEST_TMPDIR/actual_licenses # Column 1 is left only, Column 2 is right only, Column 3 is shared lines # Select lines unique to actual_licenses, i.e. extra licenses.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 18:48:35 UTC 2024 - 13.6K bytes - Viewed (0) -
cni/pkg/install/install_test.go
cfg := &config.InstallConfig{ MountedCNINetDir: cniNetDir, ChainedCNIPlugin: c.chainedCNIPlugin, CNIBinTargetDirs: []string{cniBinDir}, } isReady := &atomic.Value{} isReady.Store(false) installer := NewInstaller(cfg, isReady) installer.cniConfigFilepath = cniConfigFilePath installer.kubeconfigFilepath = kubeConfigFilePath err := installer.Cleanup()
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 26 20:34:28 UTC 2024 - 11.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
} } else { ext = outputExtension; } outputFile = File.createTempFile("cmdextout_" + filePrefix + "_", ext, tempDir); // store to a file CopyUtil.copy(in, inputFile); executeCommand(inputFile, outputFile);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.6K bytes - Viewed (0) -
guava/src/com/google/common/base/Splitter.java
* the order in which these configuration methods are called is never significant. * * <p><b>Warning:</b> Splitter instances are immutable. Invoking a configuration method has no * effect on the receiving instance; you must store and use the new splitter instance it returns * instead. * * <pre>{@code * // Do NOT do this * Splitter splitter = Splitter.on('/'); * splitter.trimResults(); // does nothing!
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 21:14:05 UTC 2024 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
return crawlingInfoList; } public OptionalEntity<CrawlingInfo> getCrawlingInfo(final String id) { return crawlingInfoBhv.selectByPK(id); } public void store(final CrawlingInfo crawlingInfo) { setupStoreCondition(crawlingInfo); crawlingInfoBhv.insertOrUpdate(crawlingInfo, op -> op.setRefreshPolicy(Constants.TRUE)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.4K bytes - Viewed (0)