Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 161 for MONITOR (3.07 sec)

  1. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

    import org.gradle.launcher.exec.RunBuildBuildOperationType
    import java.net.InetAddress
    import java.net.URLEncoder
    
    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
        id("gradlebuild.module-identity")
    }
    
    val serverUrl = "https://ge.gradle.org"
    val gitCommitName = "gitCommitId"
    val tcBuildTypeName = "tcBuildType"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    	_, err := t.client.Get(ctx, path.Join("/", t.prefix, "health"))
    	if err != nil {
    		return fmt.Errorf("error getting data from etcd: %w", err)
    	}
    	return nil
    }
    
    func (t *etcd3ProberMonitor) Monitor(ctx context.Context) (metrics.StorageMetrics, error) {
    	t.mux.RLock()
    	defer t.mux.RUnlock()
    	if t.closed {
    		return metrics.StorageMetrics{}, fmt.Errorf("closed")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pkg/kubelet/logs/container_log_manager_test.go

    	require.NoError(t, c.rotateLogs(ctx))
    
    	// Start a routine that can monitor the queue and shutdown the queue to trigger the retrun from the processQueueItems
    	// Keeping the monitor duration smaller in order to keep the unwanted delay in the test to a minimal.
    	go func() {
    		pollTimeoutCtx, cancel := context.WithTimeout(ctx, 10*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/types.go

    	PodCgroupRoot string
    }
    
    // Manager evaluates when an eviction threshold for node stability has been met on the node.
    type Manager interface {
    	// Start starts the control loop to monitor eviction thresholds at specified interval.
    	Start(diskInfoProvider DiskInfoProvider, podFunc ActivePodsFunc, podCleanedUpFunc PodCleanedUpFunc, monitoringInterval time.Duration)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. README.md

    </a>
    
    ---
    
    Istio is an open source service mesh that layers transparently onto existing distributed applications. Istio’s powerful features provide a uniform and more efficient way to secure, connect, and monitor services. Istio is the path to load balancing, service-to-service authentication, and monitoring – with few or no service code changes.
    
    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    		if releaseErr != nil {
    			return nil, fmt.Errorf("failed releasing inhibitLock: %v and failed monitoring shutdown: %v", releaseErr, err)
    		}
    		return nil, fmt.Errorf("failed to monitor shutdown: %v", err)
    	}
    
    	stop := make(chan struct{})
    	go func() {
    		// Monitor for shutdown events. This follows the logind Inhibit Delay pattern described on https://www.freedesktop.org/wiki/Software/systemd/inhibit/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  7. cmd/erasure-sets.go

    	s.connectDisks()
    
    	monitor := time.NewTimer(monitorInterval)
    	defer monitor.Stop()
    
    	for {
    		select {
    		case <-ctx.Done():
    			return
    		case <-monitor.C:
    			if serverDebugLog {
    				console.Debugln("running drive monitoring")
    			}
    
    			s.connectDisks()
    
    			// Reset the timer for next interval
    			monitor.Reset(monitorInterval)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. pkg/util/iptables/iptables.go

    	iptablesFlushTimeout = 5 * time.Second
    	// How often we poll while waiting for an iptables flush to complete
    	iptablesFlushPollTime = 100 * time.Millisecond
    )
    
    // Monitor is part of Interface
    func (runner *runner) Monitor(canary Chain, tables []Table, reloadFunc func(), interval time.Duration, stopCh <-chan struct{}) {
    	for {
    		_ = utilwait.PollImmediateUntil(interval, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package populator implements interfaces that monitor and keep the states of the
    // desired_state_of_word in sync with the "ground truth" from informer.
    package populator
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"k8s.io/klog/v2"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. hack/make-rules/verify.sh

      "verify-golangci-lint-pr.sh"       # Runs in a separate job for PRs.
      "verify-golangci-lint-pr-hints.sh" # Runs in a separate job for PRs.
      "verify-licenses.sh"           # runs in a separate job to monitor availability of the dependencies periodically
      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    # Exclude typecheck in certain cases, if they're running in a separate job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top