Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 509 for task1 (0.03 sec)

  1. android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

    1. SECONDS,
    2. new ArrayBlockingQueue<Runnable>(1000));
    3. executorService.prestartAllCoreThreads();
    4. final AtomicInteger integer = new AtomicInteger();
    5. // Execute a bunch of tasks to ensure that our threads are allocated and hot
    6. for (int i = 0; i < NUM_THREADS * 10; i++) {
    7. @SuppressWarnings("unused") // https://errorprone.info/bugpattern/FutureReturnValueIgnored
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. go.mod

    1. github.com/go-logr/stdr v1.2.2 // indirect
    2. github.com/go-openapi/jsonpointer v0.21.0 // indirect
    3. github.com/go-openapi/jsonreference v0.21.0 // indirect
    4. github.com/go-openapi/swag v0.23.0 // indirect
    5. github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
    6. github.com/gobwas/glob v0.2.3 // indirect
    7. github.com/goccy/go-json v0.10.3 // indirect
    8. github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 06:23:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    1. messages.Add(msg.NewUpdateIncompatibility(res,
    2. "meshConfig.defaultConfig.tracer", "1.21",
    3. "tracing is no longer by default enabled to send to 'zipkin.istio-system.svc'; "+
    4. "follow https://istio.io/latest/docs/tasks/observability/distributed-tracing/telemetry-api/",
    5. "1.21"))
    6. return nil
    7. }
    8.  
    9. func checkPassthroughTargetPorts(cli kube.CLIClient, messages *diag.Messages) error {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 02:31:32 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. helm-releases/minio-5.3.0.tgz

    service.loadBalancerSourceRa Addresses that are allowed when service is LoadBalancer ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service ## #loadBalancerSourceRa: # - 10.10.10.0/24 loadBalancerSourceRa: [] ## service.externalTrafficPolic minio service external traffic policy ## ref http://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip ## externalTrafficPolic:...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 11 12:21:05 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

    1. #### Don't Translate these Pages
    2.  
    3. 🚨 Don't translate:
    4.  
    5. * Files under `reference/`
    6. * `release-notes.md`
    7. * `fastapi-people.md`
    8. * `external-links.md`
    9. * `newsletter.md`
    10. * `management-tasks.md`
    11. * `management.md`
    12.  
    13. Some of these files are updated very frequently and a translation would always be behind, or they include the main content from English source files, etc.
    14.  
    15. #### New Language
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Aug 25 02:44:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

    1. // More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
    2. // +optional
    3. repeated string finalizers = 1;
    4. }
    5.  
    6. // NamespaceStatus is information about the current status of a Namespace.
    7. message NamespaceStatus {
    8. // Phase is the current lifecycle phase of the namespace.
    9. // More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
    10. // +optional
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. cmd/peer-s3-client.go

    1. // buckets only and not the quourum lost ones like this, so
    2. // explicit call
    3. for bktName, count := range bucketsMap {
    4. if count < quorum {
    5. // Queue a bucket heal task
    6. globalMRFState.addPartialOp(PartialOperation{
    7. Bucket: bktName,
    8. Queued: time.Now(),
    9. })
    10. }
    11. }
    12. }
    13.  
    14. result := make([]BucketInfo, 0, len(resultMap))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 22:26:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exec/Crawler.java

    1. logger.info("Finished Crawler");
    2. }
    3.  
    4. return Constants.EXIT_OK;
    5. } catch (final Throwable t) {
    6. logger.warn("An exception occurs on the crawl task.", t);
    7. return Constants.EXIT_FAIL;
    8. } finally {
    9. pathMappingHelper.removePathMappingList(options.sessionId);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/MoreFilesTest.java

    1. assertFalse(Files.exists(symlink, NOFOLLOW_LINKS));
    2. assertTrue(Files.isDirectory(realSymlinkTarget, NOFOLLOW_LINKS));
    3. }
    4. }
    5.  
    6. /**
    7. * Starts a new task on the given executor that switches (deletes and replaces) a file between
    8. * being a directory and being a symlink. The given {@code file} is the file that should switch
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. cmd/update.go

    1. internalLogIf(GlobalContext, err)
    2.  
    3. return err == nil
    4. }
    5.  
    6. // MinIO Helm chart uses DownwardAPIFile to write pod label info to /podinfo/labels
    7. // More info: https://kubernetes.io/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/#store-pod-fields
    8. // Check if this is Helm package installation and report helm chart version
    9. func getHelmVersion(helmInfoFilePath string) string {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top