Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for stops (0.08 sec)

  1. src/runtime/traceback.go

    			anySymbolized := false
    			stop := false
    			for _, pc := range cgoBuf[:cgoN] {
    				if cgoSymbolizer == nil {
    					if pr, stop := commitFrame(); stop {
    						break
    					} else if pr {
    						print("non-Go function at pc=", hex(pc), "\n")
    					}
    				} else {
    					stop = printOneCgoTraceback(pc, commitFrame, &arg)
    					anySymbolized = true
    					if stop {
    						break
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
    
            @Override
            public void stop() {
                try {
                    CompositeStoppable.stoppable(Arrays.asList(serviceProviders)).stop();
                } finally {
                    Arrays.fill(serviceProviders, null);
                }
            }
        }
    
        /**
         * Wraps a parent to ignore stop requests.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains("Providing metadata for group:projectB:1.1")
    
            when:
            // stop the daemon to make sure that when we run the build again
            // it's fetched from the persistent cache
            run '--stop'
            supplierInteractions.refresh('group:projectB:2.2', 'group:projectB:1.1')
            run 'checkDeps'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	w.Stop()
    
    	// Make sure when we watch from 0 we receive an ADDED event
    	w, err = store.Watch(ctx, key, storage.ListOptions{ResourceVersion: "0", Predicate: storage.Everything})
    	if err != nil {
    		t.Fatalf("Watch failed: %v", err)
    	}
    
    	testCheckResult(t, w, watch.Event{Type: watch.Added, Object: out})
    	w.Stop()
    
    	// Compact previous versions
    	if compaction == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    				consistent = false
    				continue
    			}
    			ver := vers[0]
    			if len(tops) == 0 {
    				consistent = true
    				topSig = ver.header
    			} else {
    				consistent = consistent && ver.header == topSig
    			}
    			tops = append(tops, vers[0])
    		}
    
    		// Check if done...
    		if len(tops) < quorum {
    			// We couldn't gather enough for quorum
    			break
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            def service = Mock(TestStopService)
    
            given:
            registry.add(TestStopService, service)
    
            when:
            registry.close()
    
            then:
            1 * service.stop()
        }
    
        def closeIgnoresServiceWithNoCloseOrStopMethod() {
            registry.add(String, "service")
            registry.getAll(String)
    
            when:
            registry.close()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    # the process is sometimes unstoppable, so this function works around it
    # by killing the processes.
    function Restart-LogService([string]$service, [string]$cmdline) {
      Stop-Service -NoWait -ErrorAction Ignore $service
    
      # Wait (if necessary) for service to stop.
      $timeout = 10
      $stopped = (Get-service $service).Status -eq 'Stopped'
      for ($i = 0; $i -lt $timeout -and !($stopped); $i++) {
          Start-Sleep 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		container.Lifecycle = &v1.Lifecycle{
    			PreStop: a.PreStopHandler,
    		}
    	}
    	return pod, container, nil
    }
    
    // killContainer kills a container through the following steps:
    // * Run the pre-stop lifecycle hooks (if applicable).
    // * Stop the container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                result.assertResultVisited();
            }
            beforeExecute.execute(this);
            assertCanExecute();
            assert !(usesSharedDaemons() && (args.contains("--stop") || tasks.contains("--stop"))) : "--stop cannot be used with daemons that are shared with other tests, since this will cause other tests to fail.";
            collectStateBeforeExecution();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    		lock(&s.lock)
    		// Stop the timer here because s.wake is unable to do it for us.
    		// We don't really care if we succeed in stopping the timer. One
    		// reason we might fail is that we've already woken up, but the timer
    		// might be in the process of firing on some other P; essentially we're
    		// racing with it. That's totally OK. Double wake-ups are perfectly safe.
    		s.timer.stop()
    		unlock(&s.lock)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top