Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 540 for stopped_ (0.09 sec)

  1. src/time/tick_test.go

    // to have the same signatures as Timer.
    type tickerTimer struct {
    	*Ticker
    	stopped bool
    }
    
    func (t *tickerTimer) Stop() bool {
    	pending := !t.stopped
    	t.stopped = true
    	t.Ticker.Stop()
    	return pending
    }
    
    func (t *tickerTimer) Reset(d Duration) bool {
    	pending := !t.stopped
    	t.stopped = false
    	t.Ticker.Reset(d)
    	return pending
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. releasenotes/notes/39366.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 39366
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 09 13:54:31 UTC 2022
    - 253 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/decorated_watcher_test.go

    		}
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Errorf("timeout after %v", wait.ForeverTestTimeout)
    	}
    
    	// expect the underlying watcher to have been stopped as a result of the context cancellation
    	if !w.IsStopped() {
    		t.Errorf("expected underlying watcher to be stopped")
    	}
    }
    
    func expectPodEvent(t *testing.T, dw *decoratedWatcher, watchType watch.EventType) {
    	select {
    	case e := <-dw.ResultChan():
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 02 19:25:31 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

                allClients.removeAll(clientsToStop);
                if (failureCount > 0) {
                    LOGGER.info("Stopped {} worker daemon(s).  {} worker daemons had failures while stopping.", clientCount, failureCount);
                } else {
                    LOGGER.info("Stopped {} worker daemon(s).", clientCount);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. samples/extauthz/cmd/extauthz/main.go

    	wg.Add(2)
    	go s.startHTTP(httpAddr, &wg)
    	go s.startGRPC(grpcAddr, &wg)
    	wg.Wait()
    }
    
    func (s *ExtAuthzServer) stop() {
    	s.grpcServer.Stop()
    	log.Printf("GRPC server stopped")
    	log.Printf("HTTP server stopped: %v", s.httpServer.Close())
    }
    
    func NewExtAuthzServer() *ExtAuthzServer {
    	return &ExtAuthzServer{
    		grpcV2:   &extAuthzServerV2{},
    		grpcV3:   &extAuthzServerV3{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/kubelet/util/manager/watch_based_manager_test.go

    			}
    			reflectorRunning := func() bool {
    				store.lock.Lock()
    				defer store.lock.Unlock()
    				item := store.items[key]
    
    				item.lock.Lock()
    				defer item.lock.Unlock()
    				return !item.stopped
    			}
    
    			// AddReference should start reflector.
    			store.AddReference("ns", "name", "pod")
    			if err := wait.Poll(10*time.Millisecond, time.Second, itemExists); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. src/runtime/sys_x86.go

    //go:build amd64 || 386
    
    package runtime
    
    import (
    	"internal/goarch"
    	"unsafe"
    )
    
    // adjust Gobuf as if it executed a call to fn with context ctxt
    // and then stopped before the first instruction in fn.
    func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
    	sp := buf.sp
    	sp -= goarch.PtrSize
    	*(*uintptr)(unsafe.Pointer(sp)) = buf.pc
    	buf.sp = sp
    	buf.pc = uintptr(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 552 bytes
    - Viewed (0)
  8. src/runtime/mcheckmark.go

    // a live object due to mutations without write barriers or bugs in the
    // collector implementation. As a sanity check, the GC has a 'checkmark'
    // mode that retraverses the object graph with the world stopped, to make
    // sure that everything that should be marked is marked.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/syscall/syscall_solaris.go

    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    func (w WaitStatus) Signal() Signal {
    	sig := Signal(w & mask)
    	if sig == stopped || sig == 0 {
    		return -1
    	}
    	return sig
    }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalCancellableConnection.java

         * @throws InternalBuildCancelledException When the operation was cancelled before it could complete.
         * @throws IllegalStateException When this connection has been stopped.
         * @since 2.1-rc-1
         */
        BuildResult<?> getModel(ModelIdentifier modelIdentifier, InternalCancellationToken cancellationToken,
                                BuildParameters operationParameters) throws
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top