Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 202 for exited (0.04 sec)

  1. docs/es/docs/tutorial/bigger-applications.md

    * busca el módulo `dependencies` (un archivo imaginario en `app/routers/dependencies.py`)...
    * y de él, importa la función `get_token_header`.
    
    Pero ese archivo no existe, nuestras dependencias están en un archivo en `app/dependencies.py`.
    
    Recuerda cómo se ve nuestra estructura de aplicación/archivo:
    
    <img src="/img/tutorial/bigger-applications/package.drawio.svg">
    
    ---
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  2. docs/en/docs/alternatives.md

    These features are what Marshmallow was built to provide. It is a great library, and I have used it a lot before.
    
    But it was created before there existed Python type hints. So, to define every <abbr title="the definition of how data should be formed">schema</abbr> you need to use specific utils and classes provided by Marshmallow.
    
    /// check | Inspired **FastAPI** to
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/BloomFilter.java

      }
    
      /**
       * Returns an estimate for the total number of distinct elements that have been added to this
       * Bloom filter. This approximation is reasonably accurate if it does not exceed the value of
       * {@code expectedInsertions} that was used when constructing the filter.
       *
       * @since 22.0
       */
      public long approximateElementCount() {
        long bitSize = bits.bitSize();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v1_gen.go

    		zb0001Len--
    		zb0001Mask |= 0x80
    	}
    	// variable map header, size zb0001Len
    	err = en.Append(0x80 | uint8(zb0001Len))
    	if err != nil {
    		return
    	}
    
    	// skip if no fields are to be emitted
    	if zb0001Len != 0 {
    		// write "e"
    		err = en.Append(0xa1, 0x65)
    		if err != nil {
    			return
    		}
    		err = en.WriteString(z.ETag)
    		if err != nil {
    			err = msgp.WrapError(err, "ETag")
    			return
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Dec 15 22:50:12 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            assertNotNull(encrypted1);
    
            // Encrypt larger message to trigger rotation
            byte[] largeMessage = new byte[150]; // Exceed 100 byte limit
            Arrays.fill(largeMessage, (byte) 'A');
    
            // Should trigger automatic rotation and succeed
            byte[] encrypted2 = assertDoesNotThrow(() -> context.encryptMessage(largeMessage, 2L));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  6. cmd/sts-handlers.go

    	// https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html
    	// The plain text that you use for both inline and managed session
    	// policies shouldn't exceed maxSTSSessionPolicySize characters.
    	if len(policyBuf) > maxSTSSessionPolicySize {
    		return errSessionPolicyTooLarge
    	}
    
    	c[policy.SessionPolicyName] = base64.StdEncoding.EncodeToString(policyBuf)
    	return nil
    }
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                options = {};
    
            //allow setting options with data attributes
            //data-api options will be overwritten with custom javascript options
            options = $.extend(this.element.data(), options);
    
            //html template for the picker UI
            if (typeof options.template !== 'string' && !(options.template instanceof $))
                options.template =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InetAddresses.java

        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
       * @param hextets {@code int[]} array of eight 16-bit hextets, or -1s
       */
      private static String hextetsToIPv6String(int[] hextets) {
        // While scanning the array, handle these state transitions:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_es.properties

    labels.system_info_fess_prop_title=Propiedades de la aplicación
    labels.system_info_bug_report_title=Propiedades del informe de errores
    labels.system_info_system_properties_does_not_exist=system.properties no existe. Se aplicarán los valores predeterminados.
    labels.file_auth_configuration=Autenticación de archivos
    labels.file_auth_list_hostname=Nombre de host
    labels.file_auth_list_file_crawling_config=Nombre de configuración
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		Description:    "X-Amz-Algorithm only supports \"AWS4-HMAC-SHA256\".",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrExpiredPresignRequest: {
    		Code:           "AccessDenied",
    		Description:    "Request has expired",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrRequestNotReadyYet: {
    		Code:           "AccessDenied",
    		Description:    "Request is not valid yet",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (1)
Back to top