Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 800 for stops (0.07 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    			require.Equal(t, int64(1), resourceAllocatable.Value(), "Devices of plugin previously registered should be removed.")
    			p2.Stop()
    			p3.Stop()
    			cleanup(t, m, p1)
    		}
    	}
    }
    
    // Tests that the device plugin manager correctly handles registration and re-registration by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	for _, containerResult := range killContainerResults {
    		result.AddSyncResult(containerResult)
    	}
    
    	// stop sandbox, the sandbox will be removed in GarbageCollect
    	killSandboxResult := kubecontainer.NewSyncResult(kubecontainer.KillPodSandbox, runningPod.ID)
    	result.AddSyncResult(killSandboxResult)
    	// Stop all sandboxes belongs to same pod
    	for _, podSandbox := range runningPod.Sandboxes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // 966-975.
    // For journal quality proofs that these steps are complete, correct, and terminate see
    // Hudson, R., and Moss, J.E.B. Copying Garbage Collection without stopping the world.
    // Concurrency and Computation: Practice and Experience 15(3-5), 2003.
    //
    // 1. GC performs sweep termination.
    //
    //    a. Stop the world. This causes all Ps to reach a GC safe-point.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/parser.go

    			p.running = true
    
    			ps[ev.P] = p
    		case EvProcStop:
    			p := ps[ev.P]
    			if !p.running {
    				return fmt.Errorf("p %d is not running before stop (time %d)", ev.P, ev.Ts)
    			}
    			if p.g != 0 {
    				return fmt.Errorf("p %d is running a goroutine %d during stop (time %d)", ev.P, p.g, ev.Ts)
    			}
    			p.running = false
    
    			ps[ev.P] = p
    		case EvGCStart:
    			if evGC != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. src/math/big/nat.go

    func (z nat) sqrt(x nat) nat {
    	if x.cmp(natOne) <= 0 {
    		return z.set(x)
    	}
    	if alias(z, x) {
    		z = nil
    	}
    
    	// Start with value known to be too large and repeat "z = āŒŠ(z + āŒŠx/zāŒ‹)/2āŒ‹" until it stops getting smaller.
    	// See Brent and Zimmermann, Modern Computer Arithmetic, Algorithm 1.13 (SqrtInt).
    	// https://members.loria.fr/PZimmermann/mca/pub226.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

        int count = 0;
        while (contains(iterator, element)) {
          // Since it lives in the same class, we know contains gets to the element and then stops,
          // though that isn't currently publicly documented.
          count++;
        }
        return count;
      }
    
      /**
       * Returns an iterator that cycles indefinitely over the elements of {@code iterable}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

        int count = 0;
        while (contains(iterator, element)) {
          // Since it lives in the same class, we know contains gets to the element and then stops,
          // though that isn't currently publicly documented.
          count++;
        }
        return count;
      }
    
      /**
       * Returns an iterator that cycles indefinitely over the elements of {@code iterable}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    		will be assembled with the Go assembler.
    	.swig, .swigcxx
    		SWIG definition files.
    	.syso
    		System object files.
    
    Files of each of these types except .syso may contain build
    constraints, but the go command stops scanning for build constraints
    at the first item in the file that is not a blank line or //-style
    line comment. See the go/build package documentation for
    more details.
    	`,
    }
    
    var HelpBuildmode = &base.Command{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    	// storing it to d.sp because getcallersp's result is a
    	// uintptr stack pointer.
    	d.sp = getcallersp()
    
    	// deferproc returns 0 normally.
    	// a deferred func that stops a panic
    	// makes the deferproc return 1.
    	// the code the compiler generates always
    	// checks the return value and jumps to the
    	// end of the function if deferproc returns != 0.
    	return0()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/os/exec/exec.go

    	//
    	// Otherwise, during the execution of the command a separate
    	// goroutine reads from Stdin and delivers that data to the command
    	// over a pipe. In this case, Wait does not complete until the goroutine
    	// stops copying, either because it has reached the end of Stdin
    	// (EOF or a read error), or because writing to the pipe returned an error,
    	// or because a nonzero WaitDelay was set and expired.
    	Stdin io.Reader
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top