Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 161 for MONITOR (0.09 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractService.java

            return "stopping({from = " + from + "})";
          }
        };
      }
    
      private final Monitor monitor = new Monitor();
    
      private final Guard isStartable = new IsStartableGuard();
    
      @WeakOuter
      private final class IsStartableGuard extends Guard {
        IsStartableGuard() {
          super(AbstractService.this.monitor);
        }
    
        @Override
        public boolean isSatisfied() {
          return state() == NEW;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    	// expected results reported to the mock monitor at first.
    	expectedReportedReconciliationActionLabel     monitor.ActionLabel
    	expectedReportedReconciliationErrorLabel      monitor.ErrorLabel
    	expectedReportedMetricComputationActionLabels map[autoscalingv2.MetricSourceType]monitor.ActionLabel
    	expectedReportedMetricComputationErrorLabels  map[autoscalingv2.MetricSourceType]monitor.ErrorLabel
    
    	// Target resource information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

      private static final class ServiceManagerState {
        final Monitor monitor = new Monitor();
    
        @GuardedBy("monitor")
        final SetMultimap<State, Service> servicesByState =
            MultimapBuilder.enumKeys(State.class).linkedHashSetValues().build();
    
        @GuardedBy("monitor")
        final Multiset<State> states = servicesByState.keys();
    
        @GuardedBy("monitor")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/monitoring.go

    		handler.ServeHTTP(w, r)
    	})
    }
    
    // Deprecated: we shouldn't have 2 http ports. Will be removed after code using
    // this port is removed.
    func startMonitor(addr string, mux *http.ServeMux) (*monitor, error) {
    	m := &monitor{}
    
    	// get the network stuff setup
    	var listener net.Listener
    	if addr != "" {
    		var err error
    		if listener, err = net.Listen("tcp", addr); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/graph_builder.go

    	gb.monitorLock.RLock()
    	defer gb.monitorLock.RUnlock()
    
    	var monitor *monitor
    	if m, ok := gb.monitors[resource]; ok {
    		monitor = m
    	} else {
    		for monitorGVR, m := range gb.monitors {
    			if monitorGVR.Group == resource.Group && monitorGVR.Resource == resource.Resource {
    				monitor = m
    				break
    			}
    		}
    	}
    
    	if monitor == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ServiceManager.java

      private static final class ServiceManagerState {
        final Monitor monitor = new Monitor();
    
        @GuardedBy("monitor")
        final SetMultimap<State, Service> servicesByState =
            MultimapBuilder.enumKeys(State.class).linkedHashSetValues().build();
    
        @GuardedBy("monitor")
        final Multiset<State> states = servicesByState.keys();
    
        @GuardedBy("monitor")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/runtime/debug/example_monitor_test.go

    func appmain() {
    	monitor()
    
    	// Run the application.
    	println("hello")
    	panic("oops")
    }
    
    // monitor starts the monitor process, which performs automated
    // crash reporting. Call this function immediately within main.
    //
    // This function re-executes the same executable as a child process,
    // in a special mode. In that mode, the call to monitor will never
    // return.
    func monitor() {
    	const monitorVar = "RUNTIME_DEBUG_MONITOR"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

          this.satisfied = satisfied;
        }
      }
    
      private final boolean interruptible;
      private Monitor monitor;
      private final TearDownStack tearDownStack = new TearDownStack(true);
      private TestThread<Monitor> thread1;
      private TestThread<Monitor> thread2;
    
      protected MonitorTestCase(boolean interruptible) {
        this.interruptible = interruptible;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

            }
          }
        }
      }
    
      /** A guard that encapsulates a simple, mutable boolean flag. */
      static class FlagGuard extends Monitor.Guard {
    
        private boolean satisfied;
    
        protected FlagGuard(Monitor monitor) {
          super(monitor);
        }
    
        @Override
        public boolean isSatisfied() {
          return satisfied;
        }
    
        public void setSatisfied(boolean satisfied) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

    import org.opensearch.monitor.jvm.JvmStats;
    import org.opensearch.monitor.jvm.JvmStats.BufferPool;
    import org.opensearch.monitor.jvm.JvmStats.Classes;
    import org.opensearch.monitor.jvm.JvmStats.GarbageCollectors;
    import org.opensearch.monitor.jvm.JvmStats.Mem;
    import org.opensearch.monitor.jvm.JvmStats.Threads;
    import org.opensearch.monitor.os.OsProbe;
    import org.opensearch.monitor.os.OsStats;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top