Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 204 for Signals (0.21 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip.go

    		return
    	}
    
    	// First sync goes through all the Services and IPAddresses in the cache,
    	// once synced, it signals the main loop and works using the handlers, since
    	// it's less expensive and more optimal.
    	if err := r.runOnce(); err != nil {
    		runtime.HandleError(err)
    		return
    	}
    	onFirstSuccess()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-rebalance.go

    		go func(idx int) {
    			stopfn := globalRebalanceMetrics.log(rebalanceMetricRebalanceBuckets, idx)
    			err := z.rebalanceBuckets(ctx, idx)
    			stopfn(0, err)
    		}(poolIdx)
    	}
    }
    
    // StopRebalance signals the rebalance goroutine running on this node (if any)
    // to stop, using the context.CancelFunc(s) saved at the time ofStartRebalance.
    func (z *erasureServerPools) StopRebalance() error {
    	z.rebalMu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  3. src/runtime/runtime-gdb_test.go

    // from SIGABRTs from Go panics.
    func TestGdbPanic(t *testing.T) {
    	checkGdbEnvironment(t)
    	t.Parallel()
    	checkGdbVersion(t)
    
    	if runtime.GOOS == "windows" {
    		t.Skip("no signals on windows")
    	}
    
    	dir := t.TempDir()
    
    	// Build the source code.
    	src := filepath.Join(dir, "main.go")
    	err := os.WriteFile(src, []byte(panicSource), 0644)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/metrics.go

    		[]string{"eviction_signal"},
    	)
    	// Preemptions is a Counter that tracks the cumulative number of pod preemptions initiated by the kubelet.
    	// Broken down by preemption signal. A preemption is only recorded for one resource, the sum of all signals
    	// is the number of preemptions on the given node.
    	Preemptions = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           PreemptionsKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  5. CHANGELOG.md

    The alpha releases in the 5.0.0 series have production-quality code and an unstable API. We expect
    to make changes to the APIs introduced in 5.0.0-alpha.X. These releases are safe for production use
    and 'alpha' strictly signals that we're still experimenting with some new APIs. If you're eager for
    the fixes or features below, please upgrade.
    
     *  New: Named and default parameters constructor for `Request`:
    
        ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    	xdsProxy    *XdsProxy
    	fileWatcher filewatcher.FileWatcher
    
    	// local DNS Server that processes DNS requests locally and forwards to upstream DNS if needed.
    	localDNSServer *dnsClient.LocalDNSServer
    
    	// Signals true completion (e.g. with delayed graceful termination of Envoy)
    	wg sync.WaitGroup
    }
    
    // AgentOptions contains additional config for the agent, not included in ProxyConfig.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof.go

    // Go code built with -buildmode=c-archive or -buildmode=c-shared.
    // StartCPUProfile relies on the SIGPROF signal, but that signal will
    // be delivered to the main program's SIGPROF signal handler (if any)
    // not to the one used by Go. To make it work, call [os/signal.Notify]
    // for [syscall.SIGPROF], but note that doing so may break any profiling
    // being done by the main program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

                dyn_cast<GetResourceInstanceInterface>(op)) {
              instance_str = resource_instance_op.GetResourceInstanceStr();
            }
            // No value (`std::nullopt`) instance string signals that we should
            // ignore this effect, see comment for `GetResourceInstanceInterface`.
            if (!instance_str.has_value()) continue;
    
            TypeID type_id = effect.getResource()->getResourceID();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    	MaxParallelImagePulls *int32
    	// Map of signal names to quantities that defines hard eviction thresholds. For example: {"memory.available": "300Mi"}.
    	// Some default signals are Linux only: nodefs.inodesFree
    	EvictionHard map[string]string
    	// Map of signal names to quantities that defines soft eviction thresholds.  For example: {"memory.available": "300Mi"}.
    	EvictionSoft map[string]string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/types.go

    	// the scheduling of Pods will be always retried with backoff when this Event happens.
    	// (the same as Queue)
    	QueueingHintFn QueueingHintFn
    }
    
    // QueueingHintFn returns a hint that signals whether the event can make a Pod,
    // which was rejected by this plugin in the past scheduling cycle, schedulable or not.
    // It's called before a Pod gets moved from unschedulableQ to backoffQ or activeQ.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
Back to top