- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 416 for previous (0.12 sec)
-
internal/lock/lock_test.go
select { case <-locked: t.Error("unexpected unblocking") case <-time.After(100 * time.Millisecond): } // unlock if err = dupl.Close(); err != nil { t.Fatal(err) } // the previously blocked routine should be unblocked select { case <-locked: case <-time.After(1 * time.Second): t.Error("unexpected blocking") }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java
} } } } /** * Checks if the executor has been shut down and increments the running task count. * * @throws RejectedExecutionException if the executor has been previously shutdown */ private void startTask() { synchronized (lock) { if (shutdown) { throw new RejectedExecutionException("Executor already shutdown"); } runningTasks++; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 3.5K bytes - Viewed (0) -
src/cmd/api/testdata/src/pkg/p1/p1.go
constChase = AIsLowerA // forward declaration to exported ident // Deprecated: use B. A = 1 a = 11 A64 int64 = 1 AIsLowerA = a // previously declared ) const ( ConversionConst = MyInt(5) ) // Variables from function calls. var ( V = ptwo.F() // Deprecated: use WError. VError = BarE() V1 = Bar1(1, 2, 3)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:29:41 UTC 2022 - 3.3K bytes - Viewed (0) -
cni/pkg/repair/repair_test_helpers.go
"sidecar.istio.io/status": "something", }, InitContainerStatus: &workingInitContainer, }) workingPodDiedPreviously = makePod(makePodArgs{ PodName: "working-pod-died-previously", Annotations: map[string]string{ "sidecar.istio.io/status": "something", }, InitContainerStatus: &workingInitContainerDiedPreviously, })
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 12 17:39:53 UTC 2023 - 4.7K bytes - Viewed (0) -
ci/official/installer_wheel.sh
popd echo "Following installer wheels were generated: " ls "${TFCI_OUTPUT_DIR}"/*.whl if [[ "$TFCI_ARTIFACT_STAGING_GCS_ENABLE" == 1 ]]; then # Note: -n disables overwriting previously created files. gsutil cp -n "$TFCI_OUTPUT_DIR"/*.whl "$TFCI_ARTIFACT_STAGING_GCS_URI"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Jul 25 17:28:01 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
/** * Gets the model cache to use for reuse of previously built models. * * @return The model cache or {@code null} if not set. */ ModelCache getModelCache(); /** * Sets the model cache to use for reuse of previously built models. This is an optional component that serves * performance optimizations. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Table.java
* @param rowKey row key that the value should be associated with * @param columnKey column key that the value should be associated with * @param value value to be associated with the specified keys * @return the value previously associated with the keys, or {@code null} if no mapping existed * for the keys */ @CanIgnoreReturnValue @CheckForNull
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 10.7K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck.go
} } if changed { res := ObjectToInstance(se) messages.Add(msg.NewUpdateIncompatibility(res, "ENABLE_RESOLUTION_NONE_TARGET_PORT", "1.21", "ServiceEntry with resolution NONE and a targetPort set previously did nothing but now is respected", "1.21")) } } return nil } func checkPilot(cli kube.CLIClient, namespace string, messages *diag.Messages) error {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 02:31:32 UTC 2024 - 15.3K bytes - Viewed (0) -
docs/en/docs/tutorial/security/index.md
So, it was a complete additional system. It is not very popular or used nowadays. ## OpenAPI OpenAPI (previously known as Swagger) is the open specification for building APIs (now part of the Linux Foundation). **FastAPI** is based on **OpenAPI**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/integrations/veeam/README.md
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 5.4K bytes - Viewed (0)