- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for chamar (0.03 sec)
-
docs/pt/docs/async.md
### Outras funções de utilidade Qualquer outra função de utilidade que você chame diretamente pode ser criada com `def` normal ou `async def` e o FastAPI não irá afetar o modo como você a chama. Isso está em contraste às funções que o FastAPI chama para você: *funções de operação de rota* e dependências.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 23.6K bytes - Viewed (0) -
docs/en/docs/project-generation.md
- 🚀 [React](https://react.dev) for the frontend. - 💃 Using TypeScript, hooks, [Vite](https://vitejs.dev), and other parts of a modern frontend stack. - 🎨 [Chakra UI](https://chakra-ui.com) for the frontend components. - 🤖 An automatically generated frontend client. - 🧪 [Playwright](https://playwright.dev) for End-to-End testing. - 🦇 Dark mode support.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
block = (bytes[i++] & 0xff) << 16 | (bytes[i++] & 0xff) << 8 | bytes[i++] & 0xff; buffer.append(ALPHABET.charAt(block >>> 18)); buffer.append(ALPHABET.charAt(block >>> 12 & 0x3f)); buffer.append(ALPHABET.charAt(block >>> 6 & 0x3f)); buffer.append(ALPHABET.charAt(block & 0x3f)); } if (remainder == 0) { return buffer.toString(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
} /** * @throws MalformedURLException * */ private synchronized void canonicalizePath() { final char[] in = this.url.getPath().toCharArray(); final char[] out = new char[in.length]; final int length = in.length; int prefixLen = 0, state = 0; /* * The canonicalization routine */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UnicodeString.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
/* * Samba has a tendency to return pathConsumed values so that they consume a trailing slash of the * requested path. Normalize this here. */ if (reqPath.charAt(consumed - 1) == '\\') { if (log.isDebugEnabled()) { log.debug("Server consumed trailing slash of request path, adjusting"); } dr.pathConsumed--;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
return getByName(hostname, false); } static boolean isDotQuadIP(final String hostname) { if (hostname != null && hostname.length() > 0 && Character.isDigit(hostname.charAt(0))) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = hostname.length(); data = hostname.toCharArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
final StringBuilder sb = new StringBuilder(); String n = name; // fix MSBROWSE name if (n == null) { n = "null"; } else if (n.charAt(0) == 0x01) { final char c[] = n.toCharArray(); c[0] = '.'; c[1] = '.'; c[14] = '.'; n = new String(c); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0)