Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for VarLive (0.15 sec)

  1. pkg/scheduler/internal/cache/cache.go

    	n.info.SetNode(newNode)
    	return n.info.Snapshot()
    }
    
    // RemoveNode removes a node from the cache's tree.
    // The node might still have pods because their deletion events didn't arrive
    // yet. Those pods are considered removed from the cache, being the node tree
    // the source of truth.
    // However, we keep a ghost node with the list of pods until all pod deletion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  2. src/time/sleep_test.go

    var haveHighResSleep bool
    
    // adjustDelay returns an adjusted delay based on the system sleep resolution.
    // Go runtime uses different Windows timers for time.Now and sleeping.
    // These can tick at different frequencies and can arrive out of sync.
    // The effect can be seen, for example, as time.Sleep(100ms) is actually
    // shorter then 100ms when measured as difference between time.Now before and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/runtime/pprof/proto.go

    	// to indicate that stack[0] samples were lost.
    	// Otherwise the count is usually 1,
    	// but in a few special cases like lost non-Go samples
    	// there can be larger counts.
    	// Because many samples with the same stack arrive,
    	// we want to deduplicate immediately, which we do
    	// using the b.m profMap.
    	for len(data) > 0 {
    		if len(data) < 3 || data[0] > uint64(len(data)) {
    			return fmt.Errorf("truncated profile")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/build.go

    	// auto-tagging to apply only to files with a non-empty prefix, so
    	// "foo_linux.go" is tagged but "linux.go" is not. This allows new operating
    	// systems, such as android, to arrive without breaking existing code with
    	// innocuous source code in "android.go". The easiest fix: cut everything
    	// in the name before the initial _.
    	i := strings.Index(name, "_")
    	if i < 0 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-03.png" class="illustration">
    
    As you and your crush are busy not letting anyone get in front of you and take your burgers whenever they arrive, you cannot pay attention to your crush. 😞
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. pkg/volume/iscsi/iscsi_util.go

    		return fmt.Errorf("error checking if path exists: %w", pathErr)
    	} else if !pathExists {
    		klog.Warningf("Warning: Unmap skipped because path does not exist: %v", mapPath)
    		return nil
    	}
    	// If we arrive here, device is no longer used, see if need to logout the target
    	// device: 192.168.0.10:3260-iqn.2017-05.com.example:test-lun-0
    	device, _, err := extractDeviceAndPrefix(mapPath)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    	// profBuf uses a record with all zeros in its header to indicate overflow,
    	// we make sure to make the P field always non-zero: The ID of a real P will
    	// start at bit 1, and bit 0 will be set. Samples that arrive while no P is
    	// running (such as near syscalls) will set the first header field to 0b10.
    	// This careful handling of the first header field allows us to store ID of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    - Any subsequent occurrences of the same problem will be reported as a link:{javaDocPath}org/gradle/tooling/events/problems/ProblemAggregationDescriptor.html[ProblemAggregationDescriptor]. This descriptor will arrive at the _end_ of the build and contain the number of occurrences of the problem.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    // program has not called os/signal.Notify for the signal).
    func raisebadsignal(sig uint32, c *sigctxt) {
    	if sig == _SIGPROF {
    		// Ignore profiling signals that arrive on non-Go threads.
    		return
    	}
    
    	var handler uintptr
    	var flags int32
    	if sig >= _NSIG {
    		handler = _SIG_DFL
    	} else {
    		handler = atomic.Loaduintptr(&fwdSig[sig])
    		flags = sigtable[sig].flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/encoding/gob/decode.go

    // complex values.
    func ignoreTwoUints(i *decInstr, state *decoderState, v reflect.Value) {
    	state.decodeUint()
    	state.decodeUint()
    }
    
    // Since the encoder writes no zeros, if we arrive at a decoder we have
    // a value to extract and store. The field number has already been read
    // (it's how we knew to call this decoder).
    // Each decoder is responsible for handling any indirections associated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
Back to top