Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 207 for MONITOR (4.06 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    	case AAA, AAS, CBW, CDQE, CLC, CLD, CLI, CLTS, CMC, CPUID, CQO, CWD, DAA, DAS,
    		FDECSTP, FINCSTP, FNCLEX, FNINIT, FNOP, FWAIT, HLT,
    		ICEBP, INSB, INSD, INSW, INT, INTO, INVD, IRET, IRETQ,
    		LAHF, LEAVE, LRET, MONITOR, MWAIT, NOP, OUTSB, OUTSD, OUTSW,
    		PAUSE, POPA, POPF, POPFQ, PUSHA, PUSHF, PUSHFQ,
    		RDMSR, RDPMC, RDTSC, RDTSCP, RET, RSM,
    		SAHF, STC, STD, STI, SYSENTER, SYSEXIT, SYSRET,
    		UD2, WBINVD, WRMSR, XEND, XLATB, XTEST:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  2. maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

        <module>maven-artifact-ant</module>
        <module>maven-artifact-test</module>
        <module>maven-core</module>
        <module>maven-error-diagnostics</module>
        <module>maven-model</module>
        <module>maven-monitor</module>
        <module>maven-plugin-api</module>
        <module>maven-plugin-descriptor</module>
        <module>maven-plugin-parameter-documenter</module>
        <module>maven-plugin-registry</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 8.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top