- Sort Score
- Result 10 results
- Languages All
Results 4841 - 4850 of 7,967 for aclass (0.07 sec)
-
guava-testlib/test/com/google/common/testing/PackageSanityTests.java
* See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.testing; /** Test nulls for the entire package. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Dec 16 19:54:45 UTC 2020 - 752 bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/xxx/DummyTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.io.xxx; import junit.framework.TestCase; /** * @author higa * */ public class DummyTest extends TestCase { /** * */ public void test() { }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 816 bytes - Viewed (0) -
docs_src/custom_request_and_route/tutorial003.py
import time from typing import Callable from fastapi import APIRouter, FastAPI, Request, Response from fastapi.routing import APIRoute class TimedRoute(APIRoute): def get_route_handler(self) -> Callable: original_route_handler = super().get_route_handler() async def custom_route_handler(request: Request) -> Response: before = time.time() response: Response = await original_route_handler(request)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Mar 26 19:09:53 UTC 2020 - 1K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild.cleanup.gradle.kts
* limitations under the License. */ import gradlebuild.basics.repoRoot import gradlebuild.cleanup.services.DaemonTracker gradle.sharedServices.registerIfAbsent("daemonTracker", DaemonTracker::class) { parameters.rootProjectDir = repoRoot()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jan 20 15:24:40 UTC 2023 - 828 bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/JvmVersion.kt
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package common enum class JvmVersion(val major: Int) { java7(7), java8(8), java11(11), java17(17), java21(21), java23(23),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 25 15:57:12 UTC 2024 - 767 bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
* generated today may <i>not</i> be readable by a binary that was compiled 6 months ago). * * <p>As of Guava 23.0, this class is thread-safe and lock-free. It internally uses atomics and * compare-and-swap to ensure correctness when multiple threads are used to access it. * * @param <T> the type of instances that the {@code BloomFilter} accepts * @author Dimitris Andreou * @author Kevin Bourrillion
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 26.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.6.md
* "volume.alpha.kubernetes.io/storage-class" does not have any special meaning. A default storage class * and DefaultStorageClass admission plugin can be used to preserve similar behavior of Kubernetes cluster, * see https://kubernetes.io/docs/user-guide/persistent-volumes/#class-1 for details.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 304K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.wizard; public class StartCrawlingForm {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 706 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/suggest/SuggestForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.suggest; public class SuggestForm {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 700 bytes - Viewed (0) -
docs_src/body_updates/tutorial001_py310.py
from fastapi import FastAPI from fastapi.encoders import jsonable_encoder from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str | None = None description: str | None = None price: float | None = None tax: float = 10.5 tags: list[str] = [] items = { "foo": {"name": "Foo", "price": 50.2}, "bar": {"name": "Bar", "description": "The bartenders", "price": 62, "tax": 20.2},
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jan 07 14:11:31 UTC 2022 - 856 bytes - Viewed (0)