Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 325 for flakes (0.04 sec)

  1. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            assertTrue(exception.getMessage().contains("DISK_FULL"));
            assertTrue(exception.getMessage().contains("Disk full"));
        }
    
        @Test
        @DisplayName("Should have correct retryable flags for error codes")
        void testErrorCodeRetryableFlags() {
            // Retryable errors
            assertTrue(SmbOperationException.ErrorCode.CONNECTION_FAILED.isRetryable());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/SidResolverTest.java

        }
    
        @Test
        void testGetLocalGroupsMap_InvalidFlags() throws CIFSException {
            when(sidResolver.getLocalGroupsMap(any(CIFSContext.class), anyString(), eq(-1))).thenThrow(new CIFSException("Invalid flags"));
    
            assertThrows(CIFSException.class, () -> sidResolver.getLocalGroupsMap(mockContext, testServerName, -1));
        }
    
        // Test with network errors
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    silence.
    
      Alice noticed with some surprise that the pebbles were all
    turning into little cakes as they lay on the floor, and a bright
    idea came into her head.  `If I eat one of these cakes,' she
    thought, `it's sure to make SOME change in my size; and as it
    can't possibly make me larger, it must make me smaller, I
    suppose.'
    
      So she swallowed one of the cakes, and was delighted to find
    that she began shrinking directly.  As soon as she was small
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. docs/es/docs/advanced/settings.md

    # Configuraciones y Variables de Entorno
    
    En muchos casos, tu aplicación podría necesitar algunas configuraciones o ajustes externos, por ejemplo, claves secretas, credenciales de base de datos, credenciales para servicios de correo electrónico, etc.
    
    La mayoría de estas configuraciones son variables (pueden cambiar), como las URLs de bases de datos. Y muchas podrían ser sensibles, como los secretos.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/QueryResponseList.java

            if (pageSize > 0) {
                calculatePageInfo();
            }
        }
    
        /**
         * Calculates pagination information based on the current parameters.
         * This method computes page counts, navigation flags, record numbers, and page number lists.
         */
        protected void calculatePageInfo() {
            int startWithOffset = start - offset;
            if (startWithOffset < 0) {
                startWithOffset = 0;
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/SmbNegotiationResponseTest.java

            // Assert
            assertFalse(result);
            verify(negotiationResponse).haveCapabilitiy(capability);
        }
    
        @Test
        @DisplayName("Test haveCapability with multiple capability flags")
        void testHaveCapabilityMultipleFlags() {
            // Arrange
            int cap1 = 0x00000001;
            int cap2 = 0x00000002;
            int cap3 = 0x00000004;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/security/oauth2-scopes.md

    Pero cuando importas `Query`, `Path`, `Depends`, `Security` y otros de `fastapi`, en realidad son funciones que devuelven clases especiales.
    
    ///
    
    ## Usar `SecurityScopes`
    
    Ahora actualiza la dependencia `get_current_user`.
    
    Esta es la que usan las dependencias anteriores.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. docs/es/docs/deployment/https.md

    El navegador luego se comunicaría con esa dirección IP en el **puerto 443** (el puerto HTTPS).
    
    La primera parte de la comunicación es solo para establecer la conexión entre el cliente y el servidor y decidir las claves criptográficas que usarán, etc.
    
    <img src="/img/deployment/https/https02.drawio.svg">
    
    Esta interacción entre el cliente y el servidor para establecer la conexión TLS se llama **handshake TLS**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 13K bytes
    - Viewed (0)
  9. LICENSE

    be a consequence of the rest of this License.
    
      12. If the distribution and/or use of the Library is restricted in
    certain countries either by patents or by copyrighted interfaces, the
    original copyright holder who places the Library under this License may add
    an explicit geographical distribution limitation excluding those countries,
    so that distribution is permitted only in or among countries not thus
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  10. cmd/admin-bucket-handlers.go

    )
    
    const (
    	bucketQuotaConfigFile = "quota.json"
    	bucketTargetsFile     = "bucket-targets.json"
    )
    
    // PutBucketQuotaConfigHandler - PUT Bucket quota configuration.
    // ----------
    // Places a quota configuration on the specified bucket. The quota
    // specified in the quota configuration will be applied by default
    // to enforce total quota for the specified bucket.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 33.3K bytes
    - Viewed (0)
Back to top