Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for bursty (0.21 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

            run { doDaemonContext(foregroundDaemons[num], assertions) }
        }
    
        void doDaemonContext(gradleHandle, Closure assertions) {
            // poll here since even though the daemon has been marked as busy in the registry, the context may not have been
            // flushed to the log yet.
            DaemonContext context
            poll(5) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            executer.requireDaemon()
            executer.requireIsolatedDaemons()
    
            buildFile << """
    // This is a workaround to bust the JVM's file canonicalization cache
    def f = file("delete-me")
    f.createNewFile()
    f.delete() // invalidates cache
    
    task work {
        inputs.file('in.txt')
        inputs.dir('in-dir')
        def outTxt = file('out.txt')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager.go

    		ctbInformer:        bundles.Informer(),
    		ctbLister:          bundles.Lister(),
    		normalizationCache: lrucache.NewLRUExpireCache(cacheSize),
    		cacheTTL:           cacheTTL,
    	}
    
    	// Have the informer bust cache entries when it sees updates that could
    	// apply to them.
    	_, err := m.ctbInformer.AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj any) {
    			ctb, ok := obj.(*certificatesv1alpha1.ClusterTrustBundle)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

                lock.unlock();
            }
        }
    
        @Override
        public void markState(final Address address, final State state) {
            lock.lock();
            try {
                LOGGER.debug("Marking busy by address: {}", address);
                cache.update(new ObjectHolder.UpdateAction<DaemonRegistryContent>() {
                    @Override
                    public DaemonRegistryContent update(DaemonRegistryContent oldValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. internal/config/cache/cache.go

    	}
    
    	buf, err := r.MarshalMsg(nil)
    	if err != nil {
    		return nil, err
    	}
    
    	// We do not want Gets to take so much time, anything
    	// beyond 250ms we should cut it, remote cache is too
    	// busy already.
    	ctx, cancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer cancel()
    
    	req, err := http.NewRequestWithContext(ctx, http.MethodPost, c.Endpoint+mcacheV1Check, bytes.NewReader(buf))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskQueue.kt

          if (activeTask == null && futureTasks.isEmpty()) {
            return CountDownLatch(0)
          }
    
          // If there's an existing AwaitIdleTask, use it. This is necessary when the executor is
          // shutdown but still busy as we can't enqueue in that case.
          val existingTask = activeTask
          if (existingTask is AwaitIdleTask) {
            return existingTask.latch
          }
          for (futureTask in futureTasks) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pkg/volume/fc/attacher.go

    	// won't find any mount and won't return DetachDisk below.
    	// Therefore implement our own retry mechanism here.
    	// E.g. DetachDisk sometimes fails to flush a multipath device with "device is busy" when it was
    	// just unmounted.
    	// 2 minutes should be enough within 6 minute force detach timeout.
    	var detachError error
    	err = wait.PollImmediate(10*time.Second, 2*time.Minute, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top