Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 131 for Erenst (0.26 sec)

  1. guava-tests/test/com/google/common/collect/ImmutableSetTest.java

        return ImmutableSet.of(e1, e2, e3, e4, e5);
      }
    
      @Override
      protected <E extends Comparable<? super E>> Set<E> of(
          E e1, E e2, E e3, E e4, E e5, E e6, E... rest) {
        return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
      }
    
      @Override
      protected <E extends Comparable<? super E>> Set<E> copyOf(E[] elements) {
        return ImmutableSet.copyOf(elements);
      }
    
      @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/bigger-applications.md

        ---
    
        The `APIRouter`s are not "mounted", they are not isolated from the rest of the application.
    
        This is because we want to include their *path operations* in the OpenAPI schema and the user interfaces.
    
        As we cannot just isolate them and "mount" them independently of the rest, the *path operations* are "cloned" (re-created), not included directly.
    
    ## Check the automatic API docs
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  3. cmd/utils.go

    	xhttp "github.com/minio/minio/internal/http"
    	ioutilx "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/logger/message/audit"
    	"github.com/minio/minio/internal/rest"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v2/certs"
    	"github.com/minio/pkg/v2/env"
    	xaudit "github.com/minio/pkg/v2/logger/message/audit"
    	xnet "github.com/minio/pkg/v2/net"
    	"golang.org/x/oauth2"
    )
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java

        return ImmutableSet.of(e1, e2, e3, e4, e5);
      }
    
      @Override
      protected <E extends Comparable<? super E>> Set<E> of(
          E e1, E e2, E e3, E e4, E e5, E e6, E... rest) {
        return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest);
      }
    
      @Override
      protected <E extends Comparable<? super E>> Set<E> copyOf(E[] elements) {
        return ImmutableSet.copyOf(elements);
      }
    
      @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Comparators.java

        return least(k, comparator.reversed());
      }
    
      /**
       * Returns a comparator of {@link Optional} values which treats {@link Optional#empty} as less
       * than all other values, and orders the rest using {@code valueComparator} on the contained
       * value.
       *
       * @since 22.0
       */
      public static <T> Comparator<Optional<T>> emptiesFirst(Comparator<? super T> valueComparator) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  6. docs/hu/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Timothy Crosley - <strong><a href="https://www.hug.rest/" target="_blank">Hug</a> creator</strong> <a href="https://news.ycombinator.com/item?id=19455465" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    "_If you're looking to learn one **modern framework** for building REST APIs, check out **FastAPI** [...] It's fast, easy to use and easy to learn [...]_"
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  7. docs/es/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Timothy Crosley - <strong><a href="https://www.hug.rest/" target="_blank">Hug</a> creator</strong> <a href="https://news.ycombinator.com/item?id=19455465" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    "_If you're looking to learn one **modern framework** for building REST APIs, check out **FastAPI** [...] It's fast, easy to use and easy to learn [...]_"
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Apr 29 05:18:04 GMT 2024
    - 19K bytes
    - Viewed (0)
  8. docs/de/docs/python-types.md

    === "Python 3.10+"
    
        Sie können die eingebauten Typen als Generics verwenden (mit eckigen Klammern und Typen darin):
    
        * `list`
        * `tuple`
        * `set`
        * `dict`
    
        Verwenden Sie für den Rest, wie unter Python 3.8, das `typing`-Modul:
    
        * `Union`
        * `Optional` (so wie unter Python 3.8)
        * ... und andere.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:29:25 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  9. cmd/local-locker_test.go

    					}
    					if len(l.lockUID) == 0 {
    						t.Fatalf("objects uids all deleted, 0 remains")
    					}
    
    					start = time.Now()
    					l.expireOldLocks(-time.Minute)
    					t.Logf("Expire rest took: %v. Left: %d/%d", time.Since(start).Round(time.Millisecond), len(l.lockUID), len(l.lockMap))
    
    					if len(l.lockMap) != 0 {
    						t.Fatalf("objects not deleted, want %d != got %d", 0, len(l.lockMap))
    					}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 05 04:57:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/bigger-applications.md

        ---
    
        Die `APIRouter` sind nicht „gemountet“, sie sind nicht vom Rest der Anwendung isoliert.
    
        Das liegt daran, dass wir deren *Pfadoperationen* in das OpenAPI-Schema und die Benutzeroberflächen einbinden möchten.
    
        Da wir sie nicht einfach isolieren und unabhängig vom Rest „mounten“ können, werden die *Pfadoperationen* „geklont“ (neu erstellt) und nicht direkt einbezogen.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:27:59 GMT 2024
    - 21.1K bytes
    - Viewed (0)
Back to top