Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 582 for observ (0.17 sec)

  1. pkg/scheduler/metrics/metric_recorder.go

    func (r *MetricAsyncRecorder) FlushMetrics() {
    	for i := 0; i < r.bufferSize; i++ {
    		select {
    		case m := <-r.bufferCh:
    			m.metric.WithLabelValues(m.labelValues...).Observe(m.value)
    		default:
    			return
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 07:27:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. pkg/controller/job/tracking_utils.go

    type uidSet struct {
    	sync.RWMutex
    	set sets.Set[string]
    	key string
    }
    
    // uidTrackingExpectations tracks the UIDs of Pods the controller is waiting to
    // observe tracking finalizer deletions.
    type uidTrackingExpectations struct {
    	store cache.Store
    }
    
    // GetUIDs is a convenience method to avoid exposing the set of expected uids.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager.go

    	// track when a threshold was first observed
    	now := m.clock.Now()
    	thresholdsFirstObservedAt := thresholdsFirstObservedAt(thresholds, m.thresholdsFirstObservedAt, now)
    
    	// the set of node conditions that are triggered by currently observed thresholds
    	nodeConditions := nodeConditions(thresholds)
    	if len(nodeConditions) > 0 {
    		klog.V(3).InfoS("Eviction manager: node conditions - observed", "nodeCondition", nodeConditions)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Emits build operation progress for events that represent logging.
     *
     * Uses the existing {@link OutputEventListener} to observe events that <i>may</i> cause console output,
     * and emits build operation progress events for those that do cause console output.
     *
     * Currently, the only audience of these events is the build scan plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/metrics.go

    	m.observe(ctx, elapsed, result, errorType)
    }
    
    // Observe latency
    func (m *ConversionWebhookMetrics) observe(ctx context.Context, elapsed time.Duration, result string, errorType ConversionWebhookErrorType) {
    	elapsedSeconds := elapsed.Seconds()
    	m.conversionWebhookLatency.WithContext(ctx).WithLabelValues(result, string(errorType)).Observe(elapsedSeconds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:34:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/os/env_test.go

    	}
    }
    
    // On Windows, Environ was observed to report keys with a single leading "=".
    // Check that they are properly reported by LookupEnv and can be set by SetEnv.
    // See https://golang.org/issue/49886.
    func TestEnvironConsistency(t *testing.T) {
    	t.Parallel()
    
    	for _, kv := range Environ() {
    		i := strings.Index(kv, "=")
    		if i == 0 {
    			// We observe in practice keys with a single leading "=" on Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	// in this list on each termination attempt.
    	statusPostTerminating []PodStatusFunc
    
    	// startedTerminating is true once the pod worker has observed the request to
    	// stop a pod (exited syncPod and observed a podWork with WorkType
    	// TerminatingPod). Once this is set, it is safe for other components
    	// of the kubelet to assume that no other containers may be started.
    	startedTerminating bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

                publishDummyPlugin(executer)
            }
    
            buildFile << """
                def notifier = services.get(${BuildScanEndOfBuildNotifier.name})
            """
        }
    
        def "can observe successful build after completion of user logic and build outcome is reported"() {
            when:
            buildFile << """
                notifier.notify {
                    println "failure is null: \${it.failure == null}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    // included because small negative changes have been observed in real
    // monotonic clock readings (see issue #96459) and we want to test
    // that they are properly tolerated.  The designed toleration is to
    // pretend that the clock did not change, until it resumes net forward
    // progress.  The exercise checks that the count in the observer is
    // correct at each step.  The observer is expected to get one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/path-params.md

    ```JSON
    {"item_id":3}
    ```
    
    !!! check "Verifique"
    	Observe que o valor recebido pela função (e também retornado por ela) é `3`, como um Python `int`, não como uma string `"3"`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top