Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 397 for Signals (0.16 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	// it returns 503 if not all registered signals have been ready (closed) otherwise it simply replies with 404.
    	// the apiextentionserver is considered to be initialized once hasCRDInformerSyncedSignal is closed.
    	//
    	// here, in this test the delegate represent the special handler and hasSync represents the signal.
    	// primarily we just want to make sure that the delegate has been called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/controller/volume/persistentvolume/index_test.go

    		},
    		"successful-match-very-large": {
    			expectedMatch: "local-pd-very-large",
    			// we keep the pvc size less than int64 so that in case the pv overflows
    			// the pvc does not overflow equally and give us false matching signals.
    			claim: makePVC("1E", func(pvc *v1.PersistentVolumeClaim) {
    				pvc.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce}
    				pvc.Spec.StorageClassName = &classLarge
    			}),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
Back to top