Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 738 for Dunning (0.18 sec)

  1. .github/FUNDING.yml

    # These are supported funding model platforms
    
    github: [jinzhu]
    patreon: jinzhu
    Others
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Sun Jun 07 04:47:26 GMT 2020
    - 102 bytes
    - Viewed (0)
  2. .github/FUNDING.yml

    Sebastián Ramírez <******@****.***> 1589724233 +0200
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun May 17 14:03:53 GMT 2020
    - 19 bytes
    - Viewed (0)
  3. docs/en/docs/deployment/docker.md

    And the **container** itself (in contrast to the **container image**) is the actual running instance of the image, comparable to a **process**. In fact, a container is running only when it has a **process running** (and normally it's only a single process). The container stops when there's no process running in it.
    
    ## Container Images
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  4. docs/features/https.md

    Use [CertificatePinner](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-certificate-pinner/) to restrict which certificates and certificate authorities are trusted. Certificate pinning increases security, but limits your server team’s abilities to update their TLS certificates. **Do not use certificate pinning without the blessing of your server’s TLS administrator!**
    
    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient.Builder()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Dec 24 00:16:30 GMT 2022
    - 10.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

        }
      }
    
      private static class NoOpService extends AbstractService {
        boolean running = false;
    
        @Override
        protected void doStart() {
          assertFalse(running);
          running = true;
          notifyStarted();
        }
    
        @Override
        protected void doStop() {
          assertTrue(running);
          running = false;
          notifyStopped();
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 29.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    exact shape doesn't matter,' it said,) and then all the party
    were placed along the course, here and there.  There was no `One,
    two, three, and away,' but they began running when they liked,
    and left off when they liked, so that it was not easy to know
    when the race was over.  However, when they had been running half
    an hour or so, and were quite dry again, the Dodo suddenly called
    out `The race is over!' and they all crowded round it, panting,
    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)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    exact shape doesn't matter,' it said,) and then all the party
    were placed along the course, here and there.  There was no `One,
    two, three, and away,' but they began running when they liked,
    and left off when they liked, so that it was not easy to know
    when the race was over.  However, when they had been running half
    an hour or so, and were quite dry again, the Dodo suddenly called
    out `The race is over!' and they all crowded round it, panting,
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

      enum WorkerRunningState {
        /** Runnable is not running and not queued for execution */
        IDLE,
        /** Runnable is not running, but is being queued for execution */
        QUEUING,
        /** runnable has been submitted but has not yet begun execution */
        QUEUED,
        RUNNING,
      }
    
      /** Underlying executor that all submitted Runnable objects are run on. */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  9. .github/workflows/arm-ci-extended.yml

        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 10:24:16 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  10. .github/workflows/arm-ci.yml

            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Feb 07 17:41:21 GMT 2024
    - 2.2K bytes
    - Viewed (0)
Back to top