Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 245 for monoton (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cluster/addons/node-problem-detector/npd.yaml

            - "/bin/sh"
            - "-c"
            - "exec /node-problem-detector --logtostderr --config.system-log-monitor=/config/kernel-monitor.json,/config/systemd-monitor.json --config.custom-plugin-monitor=/config/kernel-monitor-counter.json,/config/systemd-monitor-counter.json --config.system-stats-monitor=/config/system-stats-monitor.json >>/var/log/node-problem-detector.log 2>&1"
            securityContext:
              privileged: true
            resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control.go

    		return &status, nil
    	}
    
    	monotonic := !allowsBurst(set)
    
    	// First, process each living replica. Exit if we run into an error or something blocking in monotonic mode.
    	processReplicaFn := func(i int) (bool, error) {
    		return ssc.processReplica(ctx, set, updateSet, monotonic, replicas, i)
    	}
    	if shouldExit, err := runForAll(replicas, processReplicaFn, monotonic); shouldExit || err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. src/time/time.go

    // resets.
    //
    // The rest of this section gives the precise details of how operations
    // use monotonic clocks, but understanding those details is not required
    // to use this package.
    //
    // The Time returned by time.Now contains a monotonic clock reading.
    // If Time t has a monotonic clock reading, t.Add adds the same duration to
    // both the wall clock and monotonic clock readings to compute the result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top