Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for tasks (0.26 sec)

  1. cmd/metrics-v2.go

    	expiryPendingTasks           MetricName = "expiry_pending_tasks"
    	expiryMissedTasks            MetricName = "expiry_missed_tasks"
    	expiryMissedFreeVersions     MetricName = "expiry_missed_freeversions"
    	expiryMissedTierJournalTasks MetricName = "expiry_missed_tierjournal_tasks"
    	expiryNumWorkers             MetricName = "expiry_num_workers"
    	transitionPendingTasks       MetricName = "transition_pending_tasks"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Release.Name }} $ helm get all {{ .Release.Name }} Next steps: * Deploy a Gateway: https://istio.io/latest/docs/setup/additional-setup/gateway/ * Try out our tasks to get started on common configurations: * https://istio.io/latest/docs/tasks/traffic-management * https://istio.io/latest/docs/tasks/security/ * https://istio.io/latest/docs/tasks/policy-enforcement/ * Review the list of actively supported releases, CVE publications and our hardening guide: * https://istio.io/latest/docs/releases/supported-releases/...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.5.md

      - [beta] In order to preserve safety guarantees the cluster no longer force deletes pods on un-responsive nodes and users are now warned if they try to force delete pods via the CLI. ([docs](http://kubernetes.io/docs/tasks/manage-stateful-set/scale-stateful-set/)) ([kubernetes/features#119](https://github.com/kubernetes/enhancements/issues/119))
    - **Auth**
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  4. fastapi/routing.py

                            if raw_response.background is None:
                                raw_response.background = background_tasks
                            response = raw_response
                        else:
                            response_args: Dict[str, Any] = {"background": background_tasks}
                            # If status_code was set, use it, otherwise use the default from the
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

                    return callable.toString();
                  }
                });
        executor.execute(task);
        this.future = task;
      }
    
      private ClosingFuture(final AsyncClosingCallable<V> callable, Executor executor) {
        checkNotNull(callable);
        TrustedListenableFutureTask<V> task =
            TrustedListenableFutureTask.create(
                new AsyncCallable<V>() {
                  @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  6. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/concurrent/TaskQueue;->schedule$default(Lokhttp3/internal/concurrent/TaskQueue;Lokhttp3/internal/concurrent/Task;JI)V
    HSPLokhttp3/internal/concurrent/TaskQueue;->schedule(Lokhttp3/internal/concurrent/Task;J)V
    HSPLokhttp3/internal/concurrent/TaskQueue;->scheduleAndDecide$okhttp(Lokhttp3/internal/concurrent/Task;JZ)Z
    HSPLokhttp3/internal/concurrent/TaskQueue;->shutdown()V
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                new AsyncCallable<String>() {
                  @Override
                  public ListenableFuture<String> call() throws Exception {
                    // Make this executor terminate after this task so that the test can tell when
                    // futureResult has received resultOfCombiner.
                    executor.shutdown();
                    callableBlocking.await();
                    return resultOfCombiner;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                new AsyncCallable<String>() {
                  @Override
                  public ListenableFuture<String> call() throws Exception {
                    // Make this executor terminate after this task so that the test can tell when
                    // futureResult has received resultOfCombiner.
                    executor.shutdown();
                    callableBlocking.await();
                    return resultOfCombiner;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  9. go.sum

    github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
    github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI=
    github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 15:22:54 GMT 2024
    - 109.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

            copyAccessEntry(original, newEntry);
            copyWriteEntry(original, newEntry);
            return newEntry;
          }
        };
    
        // Masks used to compute indices in the following table.
    
        static final int ACCESS_MASK = 1;
        static final int WRITE_MASK = 2;
        static final int WEAK_MASK = 4;
    
        /** Look-up table for factories. */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top