Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 207 for MONITOR (0.16 sec)

  1. cluster/gce/gci/master.yaml

          RestartSec=10
          RemainAfterExit=yes
          ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/health-monitor.sh
          ExecStart=/home/kubernetes/bin/health-monitor.sh container-runtime
    
          [Install]
          WantedBy=kubernetes.target
    
      - path: /etc/systemd/system/kubelet-monitor.service
        permissions: 0644
        owner: root
        content: |
          [Unit]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitorTest.groovy

            given:
            def monitor = new DefaultGarbageCollectionMonitor(GarbageCollectorMonitoringStrategy.UNKNOWN, scheduledExecutorService)
    
            when:
            monitor.getHeapStats()
    
            then:
            noExceptionThrown()
        }
    
        def "non-heap stats defaults to empty given unknown garbage collector"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. cluster/images/etcd-version-monitor/README.md

    **RUNNING THE TOOL**
    
    To run this tool as a docker container:
    - make build
    - docker run --net=host -i -t staging-k8s.gcr.io/etcd-version-monitor:0.1.3 /etcd-version-monitor
    
    To run this as a pod on the kubernetes cluster:
    - Place the 'etcd-version-monitor.yaml' in the manifests directory of
      kubelet on the master machine.
    
    *Note*: This tool has to run on the same machine as etcd, as communication
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 04:03:37 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          @Override
          protected void runTest() throws Throwable {
            Monitor monitor = new Monitor(fair);
            FlagGuard guard = new FlagGuard(monitor);
            Object[] arguments =
                (timed ? new Object[] {guard, 0L, TimeUnit.MILLISECONDS} : new Object[] {guard});
            try {
              method.invoke(monitor, arguments);
              fail("expected IllegalMonitorStateException");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        if (e == null) throw new NullPointerException();
        final Monitor monitor = this.monitor;
        monitor.enterWhen(notFull);
        try {
          insert(e);
        } finally {
          monitor.leave();
        }
      }
    
      @CanIgnoreReturnValue
      @Override
      public @Nullable E poll() {
        final Monitor monitor = this.monitor;
        if (monitor.enterIf(notEmpty)) {
          try {
            return extract();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  6. cluster/images/etcd-version-monitor/Makefile

    	cp etcd-version-monitor.go Dockerfile $(TEMP_DIR)
    
    	# Compile etcd-version-monitor.
    	docker run --rm -it \
    	    -v $(shell pwd)/../../../:/go/src/k8s.io/kubernetes \
    	    -v $(TEMP_DIR):/build \
    	    -e GOARCH=$(ARCH) \
    	    golang:$(GOLANG_VERSION) \
    	    /bin/bash -c "CGO_ENABLED=0 go build -o /build/etcd-version-monitor k8s.io/kubernetes/cluster/images/etcd-version-monitor"
    
    	docker build -t $(IMAGE) $(TEMP_DIR)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 07:06:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top