- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 3,750 for Klasse (0.04 sec)
-
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
import jcifs.util.Hexdump; import jcifs.util.Strings; /** * Base class for all SMB1/CIFS protocol message blocks. * This abstract class provides the fundamental structure and common functionality for SMB1 request * and response messages, including header fields, message encoding/decoding, and wire format handling. */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
docs/erasure/storage-class/README.md
set before starting MinIO server. After the data and parity drives for each storage class are defined using environment variables, you can set the storage class of an object via request metadata field `x-amz-storage-class`. MinIO server then honors the storage class by saving the object in specific number of data and parity drives. ## Storage usage
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
*/ private String artifactId; /** * The version of the extension. */ private String version; /** * The class loading strategy: 'self-first' (the default), * 'parent-first' (loads classes from the parent, then from the * extension) or 'plugin' (follows the rules from extensions * defined as plugins). */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/first-steps.md
{* ../../docs_src/first_steps/tutorial001_py39.py hl[1] *} `FastAPI` é uma classe Python que fornece todas as funcionalidades para sua API. /// note | Detalhes Técnicos `FastAPI` é uma classe que herda diretamente de `Starlette`. Você pode usar todas as funcionalidades do <a href="https://www.starlette.dev/" class="external-link" target="_blank">Starlette</a> com `FastAPI` também. ///Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/SerializeUtilTest.java
assertEquals(str, result); } /** * Test that default filter allows org.codelibs classes * * @throws Exception */ public void testFromBinaryToObject_DefaultFilter_AllowsCodelibsClasses() throws Exception { // The default filter should allow org.codelibs.* classes final TestSerializableClass obj = new TestSerializableClass("test", 456);
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
buf.append("},"); final Classes classes = jvmStats.getClasses(); buf.append("\"classes\":{"); append(buf, "loaded", () -> classes.getLoadedClassCount()).append(','); append(buf, "total_loaded", () -> classes.getTotalLoadedClassCount()).append(','); append(buf, "unloaded", () -> classes.getUnloadedClassCount()); buf.append("},");
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/TestExceptions.java
/** Exception classes for use in tests. */ @GwtCompatible @NullUnmarked final class TestExceptions { static class SomeError extends Error {} static class SomeCheckedException extends Exception {} static class SomeOtherCheckedException extends Exception {} static class YetAnotherCheckedException extends Exception {} static class SomeUncheckedException extends RuntimeException {}Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/FileSourceTest.java
File txtFile = new File("target/test-classes/source.txt"); FileSource source = new FileSource(txtFile); assertEquals(txtFile.getAbsolutePath(), source.getLocation()); } @Test void testGetFile() { File txtFile = new File("target/test-classes/source.txt"); FileSource source = new FileSource(txtFile); assertEquals(txtFile.getAbsoluteFile(), source.getFile()); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtException.java
import java.io.IOException; /** * NetBIOS exception class for NBT-related errors. * * This exception encapsulates NetBIOS name service and session service errors * with specific error classes and codes. */ public class NbtException extends IOException { // error classes /** Success status code */ public static final int SUCCESS = 0; /** Name service error class */ public static final int ERR_NAM_SRVC = 0x01;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
@Test public void testValueExtractionWithAPomValueContainingAPath() throws Exception { String expected = getTestFile("target/test-classes/target/classes").getCanonicalPath(); Build build = new Build(); build.setDirectory(expected.substring(0, expected.length() - "/classes".length())); Model model = new Model(); model.setBuild(build); MavenProject project = new MavenProject(model);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.3K bytes - Viewed (0)