Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,003 for stops (0.12 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

        }
    
        /**
         * Forcibly stops the daemon, even if it is busy.
         *
         * If the daemon is busy and the client is waiting for a response, it may receive “null” from the daemon as the connection may be closed by this method before the result is sent back.
         *
         * @see #requestStop(String reason)
         */
        @Override
        public void stop() {
            stopNow("service stop");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            then:
            projectDir.file("build/$artifactId-1.0.jar").assertIsCopyOf(m2Module.artifactFile)
            assertWatchedHierarchies([projectDir])
        }
    
        def "stops watching hierarchies when the limit has been reached"() {
            buildTestFixture.withBuildInSubDir()
            def includedBuild = singleProjectBuild("includedBuild") {
                buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

     * This set also INTENTIONALLY ignores {@link Actions#doNothing()} actions and empty sets as to avoid growing for something that would never do anything.
     *
     * Actions are executed in order of insertion. Duplicates are ignored. Execution stops on the first failure.
     *
     * Implements {@link InternalListener} as components themselves should be decorated if appropriate.
     *
     * @param <T> the type of the subject of the action
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/worker.go

    		case <-w.stopCh:
    			break probeLoop
    		case <-probeTicker.C:
    		case <-w.manualTriggerCh:
    			// continue
    		}
    	}
    }
    
    // stop stops the probe worker. The worker handles cleanup and removes itself from its manager.
    // It is safe to call stop multiple times.
    func (w *worker) stop() {
    	select {
    	case w.stopCh <- struct{}{}:
    	default: // Non-blocking.
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

                    state = State.Stopping;
                }
            } finally {
                lock.unlock();
            }
        }
    
        /**
         * Requests that this message hub stop. First requests stop as per {@link #requestStop()}, then blocks until stop has completed. This means that:
         *
         * <ul>
         *
         * <li>All calls to {@link Dispatch#dispatch(Object)} for outgoing messages have returned.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. pkg/test/framework/test.go

    	RequireKubernetesMinorVersion(minorVersion uint) Test
    	// RequiresMinClusters ensures that the current environment contains at least the expected number of clusters.
    	// Otherwise it stops test execution and skips the test.
    	//
    	// Deprecated: Tests should not make assumptions about number of clusters.
    	RequiresMinClusters(minClusters int) Test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    But it's not possible to have a running container without **at least one running process**. If the main process stops, the container stops.
    
    ## Build a Docker Image for FastAPI
    
    Okay, let's build something now! 🚀
    
    I'll show you how to build a **Docker image** for FastAPI **from scratch**, based on the **official Python** image.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

        }
    
        def "an exception from stop action is rethrown"() {
            given:
            def provider = registerService("service", ServiceImpl)
            provider.beforeStopping { throw new UnsupportedOperationException("Don't stop") }
            when:
            buildFinished()
    
            then:
            thrown(Exception)
        }
    
        def "other stop actions run if one of them throws"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_monitor.go

    		replenishmentFunc: replenishmentFunc,
    		registry:          registry,
    		updateFilter:      updateFilter,
    	}
    }
    
    // monitor runs a Controller with a local stop channel.
    type monitor struct {
    	controller cache.Controller
    
    	// stopCh stops Controller. If stopCh is nil, the monitor is considered to be
    	// not yet started.
    	stopCh chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/volume/util/subpath/subpath_linux.go

    	newHostPath, err = doBindSubPath(sp.mounter, subPath)
    
    	// There is no action when the container starts. Bind-mount will be cleaned
    	// when container stops by CleanSubPaths.
    	cleanupAction = nil
    	return newHostPath, cleanupAction, err
    }
    
    // This implementation is shared between Linux and NsEnter
    func safeOpenSubPath(mounter mount.Interface, subpath Subpath) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
Back to top