Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 271 - 280 of 798 for loss (0.02 seconds)

  1. android/guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java

       *
       * <pre>
       * public static void main(String[] args) {
       *   Thread.currentThread().setUncaughtExceptionHandler(UncaughtExceptionHandlers.systemExit());
       *   ...
       * </pre>
       *
       * <p>The returned handler logs any exception at severity {@code SEVERE} and then shuts down the
       * process with an exit status of 1, indicating abnormal termination.
       */
      public static UncaughtExceptionHandler systemExit() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 10 21:03:40 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  2. cmd/metacache.go

    	// Enabling this will make cache sharing more likely and cause less IO,
    	// but may cause additional latency to some calls.
    	metacacheSharePrefix = false
    )
    
    //go:generate msgp -file $GOFILE -unexported
    
    // metacache contains a tracked cache entry.
    type metacache struct {
    	// do not re-arrange the struct this struct has been ordered to use less
    	// space - if you do so please run https://github.com/orijtech/structslop
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Jul 12 16:23:16 GMT 2024
    - 6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

    import jakarta.annotation.Resource;
    
    /**
     * This class is a command-line application for creating and managing the suggest index.
     * It provides functionality to index words from documents and search logs, as well as
     * to purge old suggest data.
     */
    public class SuggestCreator {
    
        /**
         * Constructs a new suggest creator.
         */
        public SuggestCreator() {
            // do nothing
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  4. docs/fr/docs/deployment/index.md

    Je vais vous montrer certains des principaux concepts que vous devriez probablement avoir à l'esprit lors du déploiement
    d'une application **FastAPI** (bien que la plupart de ces concepts s'appliquent à tout autre type d'application web).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  5. docker-buildx.sh

    #!/bin/bash
    
    set -ex
    
    function _init() {
    	## All binaries are static make sure to disable CGO.
    	export CGO_ENABLED=0
    	export CRED_DIR="/media/${USER}/minio"
    
    	## List of architectures and OS to test coss compilation.
    	SUPPORTED_OSARCH="linux/ppc64le linux/amd64 linux/arm64"
    
    	remote=$(git remote get-url upstream)
    	if test "$remote" != "******@****.***:minio/minio.git"; then
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Oct 19 08:22:05 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/NullsFirstOrdering.java

    import com.google.common.annotations.J2ktIncompatible;
    import java.io.Serializable;
    import org.jspecify.annotations.NonNull;
    import org.jspecify.annotations.Nullable;
    
    /** An ordering that treats {@code null} as less than all other values. */
    @GwtCompatible
    final class NullsFirstOrdering<T extends @Nullable Object> extends Ordering<@Nullable T>
        implements Serializable {
      final Ordering<? super T> ordering;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 04 13:03:16 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  7. docs/fr/docs/deployment/fastapicloud.md

    Cela apporte la même **expérience développeur** que pour créer des applications avec FastAPI au **déploiement** dans le cloud. 🎉
    
    Cela prend également en charge la plupart des éléments nécessaires lors du déploiement d’une application, notamment :
    
    * HTTPS
    * Réplication, avec mise à l’échelle automatique basée sur les requêtes
    * etc.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  8. docs/ja/docs/tutorial/path-params-numeric-validations.md

    ## 数値の検証: より大きいと小なりイコール { #number-validations-greater-than-and-less-than-or-equal }
    
    以下も同様です:
    
    * `gt`: `g`reater `t`han
    * `le`: `l`ess than or `e`qual
    
    {* ../../docs_src/path_params_numeric_validations/tutorial005_an_py310.py hl[10] *}
    
    ## 数値の検証: 浮動小数点、 大なり小なり { #number-validations-floats-greater-than-and-less-than }
    
    数値のバリデーションは`float`の値に対しても有効です。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  9. docs/en/docs/editor-support.md

    - **Deploy to FastAPI Cloud** - One-click deployment of your app to [FastAPI Cloud](https://fastapicloud.com/).
    - **Stream Application Logs** - Real-time log streaming from your FastAPI Cloud-deployed application with level filtering and text search.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        IndexOutOfBoundsException expected =
            assertThrows(IndexOutOfBoundsException.class, () -> checkElementIndex(1, 1));
        assertThat(expected).hasMessageThat().isEqualTo("index (1) must be less than size (1)");
      }
    
      public void testCheckElementIndex_withDesc_negative() {
        IndexOutOfBoundsException expected =
            assertThrows(IndexOutOfBoundsException.class, () -> checkElementIndex(-1, 1, "foo"));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 19.1K bytes
    - Click Count (0)
Back to Top