Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 940 for Fell (0.18 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    falling down a very deep well.
    
      Either the well was very deep, or she fell very slowly, for she
    had plenty of time as she went down to look about her and to
    wonder what was going to happen next.  First, she tried to look
    down and make out what she was coming to, but it was too dark to
    see anything; then she looked at the sides of the well, and
    noticed that they were filled with cupboards and book-shelves;
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    falling down a very deep well.
    
      Either the well was very deep, or she fell very slowly, for she
    had plenty of time as she went down to look about her and to
    wonder what was going to happen next.  First, she tried to look
    down and make out what she was coming to, but it was too dark to
    see anything; then she looked at the sides of the well, and
    noticed that they were filled with cupboards and book-shelves;
    Plain Text
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

              return this;
            } else if (tableEntry.equals(e)) { // not a new element, ignore
              return this;
            }
          }
          // we fell out of the loop due to a long run; fall back to JDK impl
          return new JdkBackedSetBuilderImpl<E>(this).add(e);
        }
    
        @Override
        SetBuilderImpl<E> copy() {
          return new RegularSetBuilderImpl<>(this);
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 35.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableTable.java

            checkNotNull(cell.getValue(), "value");
            @SuppressWarnings("unchecked") // all supported methods are covariant
            Cell<R, C, V> immutableCell = (Cell<R, C, V>) cell;
            cells.add(immutableCell);
          } else {
            put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
          }
          return this;
        }
    
        /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 17.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/Striped64.java

        boolean collide = false; // True if last slot nonempty
        for (; ; ) {
          Cell[] as;
          Cell a;
          int n;
          long v;
          if ((as = cells) != null && (n = as.length) > 0) {
            if ((a = as[(n - 1) & h]) == null) {
              if (busy == 0) { // Try to attach new Cell
                Cell r = new Cell(x); // Optimistically create
                if (busy == 0 && casBusy()) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Striped64.java

        boolean collide = false; // True if last slot nonempty
        for (; ; ) {
          Cell[] as;
          Cell a;
          int n;
          long v;
          if ((as = cells) != null && (n = as.length) > 0) {
            if ((a = as[(n - 1) & h]) == null) {
              if (busy == 0) { // Try to attach new Cell
                Cell r = new Cell(x); // Optimistically create
                if (busy == 0 && casBusy()) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableTable.java

            checkNotNull(cell.getValue(), "value");
            @SuppressWarnings("unchecked") // all supported methods are covariant
            Cell<R, C, V> immutableCell = (Cell<R, C, V>) cell;
            cells.add(immutableCell);
          } else {
            put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
          }
          return this;
        }
    
        /**
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Dec 08 18:58:42 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess/it/stopwords.txt

    al
    allo
    ai
    agli
    all
    agl
    alla
    alle
    con
    col
    coi
    da
    dal
    dallo
    dai
    dagli
    dall
    dagl
    dalla
    dalle
    di
    del
    dello
    dei
    degli
    dell
    degl
    della
    delle
    in
    nel
    nello
    nei
    negli
    nell
    negl
    nella
    nelle
    su
    sul
    sullo
    sui
    sugli
    sull
    sugl
    sulla
    sulle
    per
    tra
    contro
    io
    tu
    lui
    lei
    noi
    voi
    loro
    mio
    Plain Text
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/server-workers.md

    !!! info
        If you are using containers, for example with Docker or Kubernetes, I'll tell you more about that in the next chapter: [FastAPI in Containers - Docker](./docker.md){.internal-link target=_blank}.
    
        In particular, when running on **Kubernetes** you will probably **not** want to use Gunicorn and instead run **a single Uvicorn process per container**, but I'll tell you about it later in that chapter.
    
    ## Gunicorn with Uvicorn Workers
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sat Sep 02 16:55:26 GMT 2023
    - 9.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Tables.java

        }
    
        Function<Cell<R, C, V1>, Cell<R, C, V2>> cellFunction() {
          return new Function<Cell<R, C, V1>, Cell<R, C, V2>>() {
            @Override
            public Cell<R, C, V2> apply(Cell<R, C, V1> cell) {
              return immutableCell(
                  cell.getRowKey(), cell.getColumnKey(), function.apply(cell.getValue()));
            }
          };
        }
    
        @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 22:45:41 GMT 2024
    - 26.1K bytes
    - Viewed (0)
Back to top