- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 370 for advice (0.04 sec)
-
src/test/java/jcifs/dcerpc/rpcTest.java
verify(mockNdrBuffer).enc_ndr_small((byte) 2); // sub_authority_count verify(mockNdrBuffer).advance(6); // identifier_authority advance verify(mockNdrBuffer).advance(8); // sub_authority advance (4 * 2) verify(mockNdrBuffer, times(2)).derive(anyInt()); // Verify identifier_authority bytes (5 zeros + 1 five)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
this.deferred.length = length; } /** * Advances the buffer index by the specified number of bytes. * * @param n the number of bytes to advance */ public void advance(final int n) { this.index += n; if (this.index - this.start > this.deferred.length) { this.deferred.length = this.index - this.start; } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
android/guava/src/com/google/common/io/MultiInputStream.java
this.it = checkNotNull(it); advance(); } @Override public void close() throws IOException { if (in != null) { try { in.close(); } finally { in = null; } } } /** Closes the current input stream and opens the next one, if any. */ private void advance() throws IOException { close(); if (it.hasNext()) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
} @Test void testAdvance() { ndrBuffer.advance(10); assertEquals(10, ndrBuffer.getIndex()); assertEquals(10, ndrBuffer.getLength()); ndrBuffer.advance(5); assertEquals(15, ndrBuffer.getIndex()); assertEquals(15, ndrBuffer.getLength()); // Advance past current length ndrBuffer.setLength(10); 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) -
guava-tests/test/com/google/common/cache/CacheRefreshTest.java
cache.asMap().put(1, -1); ticker.advance(1, MILLISECONDS); assertEquals(Integer.valueOf(1), cache.getUnchecked(0)); assertEquals(Integer.valueOf(-1), cache.getUnchecked(1)); assertEquals(Integer.valueOf(2), cache.getUnchecked(2)); assertEquals(expectedLoads, loader.getLoadCount()); assertEquals(expectedReloads, loader.getReloadCount()); // refresh 2 ticker.advance(1, MILLISECONDS);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
_dst.enc_ndr_long(_name_buffers); _dst.enc_ndr_long(0); _dst.enc_ndr_long(_name_bufferl); final int _name_bufferi = _dst.index; _dst.advance(2 * _name_bufferl); _dst = _dst.derive(_name_bufferi); for (int _i = 0; _i < _name_bufferl; _i++) { _dst.enc_ndr_short(name.buffer[_i]); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0) -
docs/es/docs/tutorial/security/simple-oauth2.md
```JSON { "detail": "Not authenticated" } ``` ### Usuario inactivo Ahora prueba con un usuario inactivo, autentícate con: Usuario: `alice` Contraseña: `secret2` Y trata de usar la operación `GET` con la path `/users/me`. Obtendrás un error de "Usuario inactivo", como: ```JSON { "detail": "Inactive user" } ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 9.9K bytes - Viewed (0)