Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 420 for formos (0.07 sec)

  1. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                throw new SMBProtocolDecodingException("Signature verification failed for " + this.getClass().getName());
            }
            return len;
        }
    
        /**
         * Writes the AndX wire format to buffer
         * @param dst the destination buffer
         * @param dstIndex the starting index
         * @return the number of bytes written
         */
        protected int writeAndXWireFormat(final byte[] dst, int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/MultiChannelManager.java

            }
    
            public long getLastHealthCheck() {
                return lastHealthCheck;
            }
    
            @Override
            public String toString() {
                return String.format("ChannelInfo{id=%s, local=%s, remote=%s, active=%d, healthy=%s}", channelId, localAddress, remoteAddress,
                        activeConnections.get(), isHealthy);
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/pac/PacMacTest.java

         */
        private void verifyNfold(String input, int outlen, byte[] expected) {
            byte[] result = PacMac.expandNFold(input.getBytes(), outlen);
            assertArrayEquals(expected, result, String.format("n-fold expansion failed for input '%s'", input));
        }
    
        /**
         * Test method for
         * {@link jcifs.pac.PacMac#calculateMac(int, java.util.Map, byte[])}.
         *
         * @throws PACDecodingException
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. docs/fr/docs/index.md

        * <abbr title="en anglais : headers">les en-têtes</abbr>.
        * <abbr title="en anglais : forms">les formulaires</abbr>.
        * <abbr title="en anglais : files">les fichiers</abbr>.
    * <abbr title="aussi connu sous le nom de : serialization, parsing, marshalling">La conversion</abbr> des données de sortie : conversion des données et types Python en données réseau (au format <abbr title="JavaScript Object Notation">JSON</abbr>), permettant de convertir :
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/path-operation-advanced-configuration.md

    👆 💪 👈 ⏮️ `openapi_extra`:
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial006.py hl[20:37,39:40] *}
    
    👉 🖼, 👥 🚫 📣 🙆 Pydantic 🏷. 👐, 📨 💪 🚫 <abbr title="converted from some plain format, like bytes, into Python objects">🎻</abbr> 🎻, ⚫️ ✍ 🔗 `bytes`, &amp; 🔢 `magic_data_reader()` 🔜 🈚 🎻 ⚫️ 🌌.
    
    👐, 👥 💪 📣 📈 🔗 📨 💪.
    
    ### 🛃 🗄 🎚 🆎
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    ///
    
    /// warning
    
    Make sure to **always** use the **exec form** of the `CMD` instruction, as explained below.
    
    ///
    
    #### Use `CMD` - Exec Form { #use-cmd-exec-form }
    
    The <a href="https://docs.docker.com/reference/dockerfile/#cmd" class="external-link" target="_blank">`CMD`</a> Docker instruction can be written using two forms:
    
    ✅ **Exec** form:
    
    ```Dockerfile
    # ✅ Do this
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  7. docs/es/docs/tutorial/security/first-steps.md

    Y también puede ser utilizada por ti mismo, para depurar, revisar y probar la misma aplicación.
    
    ## El flujo `password`
    
    Ahora retrocedamos un poco y entendamos qué es todo eso.
    
    El "flujo" `password` es una de las formas ("flujos") definidas en OAuth2, para manejar la seguridad y la autenticación.
    
    OAuth2 fue diseñado para que el backend o la API pudieran ser independientes del servidor que autentica al usuario.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.19.md

    - github.com/containerd/ttrpc: [v1.0.0](https://github.com/containerd/ttrpc/tree/v1.0.0)
    - github.com/coreos/bbolt: [v1.3.2](https://github.com/coreos/bbolt/tree/v1.3.2)
    - github.com/coreos/go-systemd/v22: [v22.1.0](https://github.com/coreos/go-systemd/v22/tree/v22.1.0)
    - github.com/cpuguy83/go-md2man/v2: [v2.0.0](https://github.com/cpuguy83/go-md2man/v2/tree/v2.0.0)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SID.java

         * @throws SmbException if the textual format is invalid
         */
        public SID(final String textual) throws SmbException {
            final StringTokenizer st = new StringTokenizer(textual, "-");
            if (st.countTokens() < 3 || !st.nextToken().equals("S")) {
                // need S-N-M
                throw new SmbException("Bad textual SID format: " + textual);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  10. tests/upsert_test.go

    	DB.Where(&User{Name: "find or create 3"}).Assign("age", 55).FirstOrCreate(&user4)
    
    	if user4.Age != 55 {
    		t.Errorf("Failed to set change to 55, got %v", user4.Age)
    	}
    
    	if updatedAt1.Format(time.RFC3339Nano) == user4.UpdatedAt.Format(time.RFC3339Nano) {
    		t.Errorf("UpdateAt should be changed when update values with assign")
    	}
    
    	DB.Where(&User{Name: "find or create 4"}).Assign(User{Age: 44}).FirstOrCreate(&user4)
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Jul 29 11:06:13 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top