Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for exacto (0.04 sec)

  1. docs/es/docs/virtual-environments.md

    La parte más importante es que cuando llamas a `python`, ese es el exacto "`python`" que será ejecutado.
    
    Así que, puedes confirmar si estás en el entorno virtual correcto.
    
    /// tip | Consejo
    
    Es fácil activar un entorno virtual, obtener un Python, y luego **ir a otro proyecto**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    Se llama "asíncrono" porque la computadora / programa no tiene que estar "sincronizado" con la tarea lenta, esperando el momento exacto en que la tarea termine, sin hacer nada, para poder tomar el resultado de la tarea y continuar el trabajo.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/settings.md

    /// tip | Consejo
    
    Un archivo que comienza con un punto (`.`) es un archivo oculto en sistemas tipo Unix, como Linux y macOS.
    
    Pero un archivo dotenv realmente no tiene que tener ese nombre exacto.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/query-params-str-validations.md

    Este patrón específico de expresión regular comprueba que el valor recibido del parámetro:
    
    * `^`: comience con los siguientes caracteres, no tiene caracteres antes.
    * `fixedquery`: tiene el valor exacto `fixedquery`.
    * `$`: termina allí, no tiene más caracteres después de `fixedquery`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Feb 15 16:23:59 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/PairedStats.java

        } else {
          checkState(yStats.sumOfSquaresOfDeltas() > 0.0);
          return LinearTransformation.vertical(xStats.mean());
        }
      }
    
      /**
       * {@inheritDoc}
       *
       * <p><b>Note:</b> This tests exact equality of the calculated statistics, including the floating
       * point values. Two instances are guaranteed to be considered equal if one is copied from the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/io/Smb2WriteResponseTest.java

        @DisplayName("Edge Case Tests")
        class EdgeCaseTests {
    
            @Test
            @DisplayName("Should handle structure size exactly 17")
            void testExactStructureSize() throws SMBProtocolDecodingException {
                byte[] buffer = new byte[64];
                SMBUtil.writeInt2(17, buffer, 0); // Exact required size
                SMBUtil.writeInt2(0, buffer, 2);
                SMBUtil.writeInt4(1000, buffer, 4);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt

     *    prefix at all (`publicobject.com`). For most applications this is the best way to configure
     *    certificate pinning.
     *
     *  * **Exactly one subdomain**: Use a single asterisk like `*.publicobject.com` to match exactly
     *    one prefix (`www.publicobject.com`, `api.publicobject.com`). Be careful with this approach as
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            System.setProperty("java.version", "11.0.1");
    
            String[] args = new String[] { "8:-Xmx1g", // Exact Java 8
                    "11:-Xmx2g", // Exact Java 11
                    "17:-Xmx4g", // Exact Java 17
                    "11:-XX:+UseG1GC" // Another exact Java 11
            };
    
            String[] result = JvmUtil.filterJvmOptions(args);
            assertEquals(2, result.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java

            // Given - notification exactly at buffer end
            byte[] buffer = new byte[104]; // Exact size needed
            int offset = 0;
    
            setHeaderStart(response, 64);
    
            // Write structure
            SMBUtil.writeInt2(9, buffer, offset);
            SMBUtil.writeInt2(80 - 64, buffer, offset + 2);
            SMBUtil.writeInt4(24, buffer, offset + 4); // Exact notification size
    
            // Write notification
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/ServerResponseValidatorTest.java

            assertEquals(0, validator.safeMultiply(0, Integer.MAX_VALUE));
            assertEquals(1, validator.safeMultiply(1, 1));
    
            // Test exact buffer boundaries
            byte[] buffer = new byte[100];
            validator.validateBufferAccess(buffer, 0, 100); // Exactly full buffer
            validator.validateBufferAccess(buffer, 100, 0); // Zero length at end
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top