- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 1,754 for sata (0.02 sec)
-
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
} @Test void testWriteOctetArray() { byte[] data = { 0x01, 0x02, 0x03, 0x04 }; ndrBuffer.writeOctetArray(data, 0, data.length); assertEquals(data.length, ndrBuffer.getIndex()); assertEquals(data.length, ndrBuffer.getLength()); assertArrayEquals(data, Arrays.copyOfRange(buffer, 0, data.length)); // Write with offset and length ndrBuffer.setIndex(10);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
docs/debugging/inspect/export.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jan 17 19:38:44 UTC 2025 - 9.1K bytes - Viewed (0) -
docs/tr/docs/features.md
* Doğrulayıcılar en kompleks data şemalarının bile temiz ve kolay bir şekilde tanımlanmasına izin veriyor, ve hepsi JSON şeması olarak dokümante ediliyor * Pydantic, JSON objen ne kadar derin (nested) olursa olsun doğrulamasını ve gösterimini yapıyor * **Genişletilebilir**:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/en/docs/tutorial/handling-errors.md
These handlers are in charge of returning the default JSON responses when you `raise` an `HTTPException` and when the request has invalid data. You can override these exception handlers with your own. ### Override request validation exceptions { #override-request-validation-exceptions } When a request contains invalid data, **FastAPI** internally raises a `RequestValidationError`. And it also includes a default exception handler for it.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.4K bytes - Viewed (0) -
cmd/storage-rest-client.go
} select { case <-ctx.Done(): return ctx.Err() case resp <- file: } } } // CleanAbandonedData will read metadata of the object on disk // and delete any data directories and inline data that isn't referenced in metadata. func (client *storageRESTClient) CleanAbandonedData(ctx context.Context, volume string, path string) error { values := make(url.Values) values.Set(storageRESTVolume, volume)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:38:41 UTC 2025 - 30.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
when(response.getHeaderStart()).thenReturn(0); // Write FileInternalInfo data at the large offset SMBUtil.writeInt8(0x123456789ABCDEFL, buffer, 1000); int result = response.readBytesWireFormat(buffer, bufferIndex); // Should return at least to the end of the data assertTrue(result >= 900); // 1000 + 8 - 100 assertNotNull(response.getInfo()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTargetName.java
public class AvTargetName extends AvPair { /** * */ private static final Charset UTF16LE = StandardCharsets.UTF_16LE; /** * Constructs an AvTargetName from raw byte data * * @param raw the raw byte data for the target name AV pair */ public AvTargetName(final byte[] raw) { super(AvPair.MsvAvTargetName, raw); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
docs/en/docs/advanced/response-change-status-code.md
## Use case { #use-case } For example, imagine that you want to return an HTTP status code of "OK" `200` by default. But if the data didn't exist, you want to create it, and return an HTTP status code of "CREATED" `201`. But you still want to be able to filter and convert the data you return with a `response_model`. For those cases, you can use a `Response` parameter. ## Use a `Response` parameter { #use-a-response-parameter }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java
import jcifs.pac.PACDecodingException; /** * Kerberos relevant authorization data container. */ public class KerberosRelevantAuthData extends KerberosAuthData { private List<KerberosAuthData> authorizations; /** * Constructs KerberosRelevantAuthData from token bytes. * * @param token the authorization data token * @param keys map of Kerberos keys indexed by key type
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransCallNamedPipe.java
private final byte[] pipeData; private final int pipeDataOff, pipeDataLen; TransCallNamedPipe(final String pipeName, final byte[] data, final int off, final int len) { name = pipeName; pipeData = data; pipeDataOff = off; pipeDataLen = len; command = SMB_COM_TRANSACTION; subCommand = TRANS_CALL_NAMED_PIPE; timeout = 0xFFFFFFFF;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.8K bytes - Viewed (0)