Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for Stopping (0.14 sec)

  1. pkg/kubelet/prober/prober_manager.go

    type Manager interface {
    	// AddPod creates new probe workers for every container probe. This should be called for every
    	// pod created.
    	AddPod(pod *v1.Pod)
    
    	// StopLivenessAndStartup handles stopping liveness and startup probes during termination.
    	StopLivenessAndStartup(pod *v1.Pod)
    
    	// RemovePod handles cleaning up the removed pod state, including terminating probe workers and
    	// deleting cached results.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

         */
        @Override
        @Nested
        public final PmdReports getReports() {
            return reports;
        }
    
        /**
         * The maximum number of failures to allow before stopping the build.
         *
         * Defaults to 0, which will stop the build on any failure.  Values 0 and
         * above are valid.  If <pre>ignoreFailures</pre> is set, this is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    	if err != nil {
    		t.Fatalf("failed when execute encrypt, error: %v", err)
    	}
    	t.Log("Connected to KMSPlugin")
    	f.CleanUp()
    
    	// Stop KMS Plugin - simulating connection loss
    	t.Log("KMS Plugin is stopping")
    	time.Sleep(2 * time.Second)
    
    	wg1.Add(1)
    	wg2.Add(1)
    	go func() {
    		defer wg2.Done()
    		// Call service to encrypt data.
    		t.Log("Sending encrypt request")
    		wg1.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. pkg/controller/resourcequota/resource_quota_monitor.go

    func (qm *QuotaMonitor) Run(ctx context.Context) {
    	defer utilruntime.HandleCrash()
    
    	logger := klog.FromContext(ctx)
    
    	logger.Info("QuotaMonitor running")
    	defer logger.Info("QuotaMonitor stopping")
    
    	// Set up the stop channel.
    	qm.monitorLock.Lock()
    	qm.stopCh = ctx.Done()
    	qm.running = true
    	qm.monitorLock.Unlock()
    
    	// Start monitors and begin change processing until the stop channel is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

            updateRootUnderLock(this::stopWatchingAndInvalidateHierarchyAfterError);
        }
    
        private SnapshotHierarchy stopWatchingAndInvalidateHierarchyAfterError(SnapshotHierarchy currentRoot) {
            warningLogger.error("Stopping file watching and invalidating VFS after an error happened");
            return stopWatchingAndInvalidateHierarchy(currentRoot);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    	if err != nil {
    		t.Fatalf("failed when execute encrypt, error: %v", err)
    	}
    	t.Log("Connected to KMSPlugin")
    
    	// Stop KMS Plugin - simulating connection loss
    	t.Log("KMS Plugin is stopping")
    	f.CleanUp()
    	time.Sleep(2 * time.Second)
    
    	wg1.Add(1)
    	wg2.Add(1)
    	go func() {
    		defer wg2.Done()
    		// Call service to encrypt data.
    		t.Log("Sending encrypt request")
    		wg1.Done()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            then:
            def e = thrown(ServiceLifecycleException)
            e.suppressed != null && e.suppressed.length > 0
        }
    
        def "exception from stop action does not prevent other services from stopping"() {
            given:
            def providerA = registerService("A", StoppableServiceImpl)
            def providerB = registerService("B", StoppableServiceImpl)
            Consumer<Object> actionB = Mock()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
            options.addOption(Option.builder(Character.toString(SHOW_VERSION))
                    .longOpt("show-version")
                    .desc("Display version information WITHOUT stopping build")
                    .build());
            options.addOption(Option.builder(ENCRYPT_MASTER_PASSWORD)
                    .longOpt("encrypt-master-password")
                    .hasArg()
                    .optionalArg(true)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/manager_test.go

    			assert.Equal(t, test.ExpectedPrepareCalls, draServerInfo.server.prepareResourceCalls.Load())
    
    			if test.wantErr {
    				assert.Error(t, err)
    				return // PrepareResources returned an error so stopping the subtest here
    			} else if test.wantResourceSkipped {
    				assert.NoError(t, err)
    				return // resource skipped so no need to continue
    			}
    
    			assert.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/cidrallocator.go

    		c.queue.Add(key)
    	}
    }
    
    func (c *MetaAllocator) run() {
    	defer runtime.HandleCrash()
    	defer c.queue.ShutDown()
    	klog.Info("Starting ServiceCIDR Allocator Controller")
    	defer klog.Info("Stopping ServiceCIDR Allocator Controllerr")
    
    	// Wait for all involved caches to be synced, before processing items from the queue is started
    	if !cache.WaitForCacheSync(c.internalStopCh, c.serviceCIDRSynced, c.ipAddressSynced) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top