- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 7,612 for class (0.03 sec)
-
src/main/java/org/codelibs/fess/es/config/bsentity/BsKeyMatch.java
private static final long serialVersionUID = 1L; protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Attribute
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.4K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java
import org.apache.maven.internal.impl.model.DefaultLifecycleBindingsInjector; import static org.apache.maven.api.Lifecycle.DEFAULT; @Singleton @Named @Priority(5) @Deprecated public class EmptyLifecycleBindingsInjector extends DefaultLifecycleBindingsInjector { private static LifecycleRegistry lifecycleRegistry; private static PackagingRegistry packagingRegistry;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K bytes - Viewed (0) -
tensorflow/c/eager/immediate_execution_tensor_handle.h
// // A TensorHandle is management class around a Tensor which may track additional // metadata and synchronization. // // This allows us to hide concrete implementations of TensorHandle from header // files. The interface lists the common functionality that must be provided by // any concrete implementation. However, in cases where the true concrete class // is needed a static_cast can be applied.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 4.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AnonymousClassesFilteringTest.kt
*/ package gradlebuild.binarycompatibility import org.junit.Test class AnonymousClassesFilteringTest : AbstractBinaryCompatibilityTest() { @Test fun `anonymous classes are excluded (java)`() { checkBinaryCompatibleJava( v1 = """ public class Source { public void some() {} } """, v2 = """
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidSocketAdapter.kt
/** * Builds a SocketAdapter from an observed implementation class, by grabbing the Class * reference to perform reflection on at runtime. * * @param actualSSLSocketClass the runtime class of Conscrypt class socket. */ private fun build(actualSSLSocketClass: Class<in SSLSocket>): AndroidSocketAdapter { var possibleClass: Class<in SSLSocket>? = actualSSLSocketClass
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/de/docs/how-to/graphql.md
* <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry</a> ๐ * Mit <a href="https://strawberry.rocks/docs/integrations/fastapi" class="external-link" target="_blank">Dokumentation fรผr FastAPI</a> * <a href="https://ariadnegraphql.org/" class="external-link" target="_blank">Ariadne</a> * Mit <a href="https://ariadnegraphql.org/docs/fastapi-integration" class="external-link" target="_blank">Dokumentation fรผr FastAPI</a>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.exception.ScriptEngineException; public class ScriptEngineFactory { private static final Logger logger = LogManager.getLogger(ScriptEngineFactory.class); protected Map<String, ScriptEngine> scriptEngineMap = new LinkedHashMap<>(); public void add(final String name, final ScriptEngine scriptEngine) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CountingOutputStreamTest.java
package com.google.common.io; import static org.junit.Assert.assertThrows; import java.io.ByteArrayOutputStream; /** * Unit tests for {@link CountingOutputStream}. * * @author Chris Nokleberg */ public class CountingOutputStreamTest extends IoTestCase { public void testCount() throws Exception { int written = 0; ByteArrayOutputStream out = new ByteArrayOutputStream();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 1.9K bytes - Viewed (0) -
docs/ko/docs/advanced/wsgi.md
์ด์ `/v1/` ๊ฒฝ๋ก์ ์๋ ๋ชจ๋ ์์ฒญ์ Flask ์์ฉ ํ๋ก๊ทธ๋จ์์ ์ฒ๋ฆฌ๋ฉ๋๋ค. ๊ทธ๋ฆฌ๊ณ ๋๋จธ์ง๋ **FastAPI**์ ์ํด ์ฒ๋ฆฌ๋ฉ๋๋ค. ์คํํ๋ฉด <a href="http://localhost:8000/v1/" class="external-link" target="_blank">http://localhost:8000/v1/</a>์ผ๋ก ์ด๋ํด์ Flask์ ์๋ต์ ๋ณผ ์ ์์ต๋๋ค: ```txt Hello, World from Flask! ``` ๊ทธ๋ฆฌ๊ณ ๋ค์์ผ๋ก ์ด๋ํ๋ฉด <a href="http://localhost:8000/v2" class="external-link" target="_blank">http://localhost:8000/v2</a> Flask์ ์๋ต์ ๋ณผ ์ ์์ต๋๋ค: ```JSON { "message": "Hello World"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 31 18:56:37 UTC 2024 - 1.3K bytes - Viewed (0) -
tensorflow/c/eager/abstract_function.h
#include "tensorflow/core/platform/refcount.h" #include "tensorflow/core/platform/status.h" namespace tensorflow { class FunctionRecord; // A traced function: this hides the complexity of converting the serialized // representation between various supported formats e.g. FunctionDef and Mlir // function. class AbstractFunction : public core::RefCounted { protected: enum AbstractFunctionKind { kGraph, kMlir };
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 1.9K bytes - Viewed (0)