Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for MONITOR (0.11 sec)

  1. pkg/util/iptables/monitor_test.go

    	var reloads uint32
    	stopCh := make(chan struct{})
    
    	canary := Chain("MONITOR-TEST-CANARY")
    	tables := []Table{TableMangle, TableFilter, TableNAT}
    	go ipt.Monitor(canary, tables, func() {
    		if !ensureNoChains(mfe) {
    			t.Errorf("reload called while canaries still exist")
    		}
    		atomic.AddUint32(&reloads, 1)
    	}, 100*time.Millisecond, stopCh)
    
    	// Monitor should create canary chains quickly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

                        // nothing to do
                    }
                }
            })
            monitor.start()
        }
    
        void stopContainer() {
            if (started) {
                started = false
                container.stop()
                monitor.interrupt()
            }
        }
    
        GradleInContainer withEnv(Map<String, ?> stringMap) {
            Map<String, String> env = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. internal/bucket/bandwidth/reader.go

    	m        *Monitor
    	opts     *MonitorReaderOptions
    }
    
    // BucketOptions represents the bucket and optionally its replication target pair.
    type BucketOptions struct {
    	Name           string
    	ReplicationARN string // This is optional, and not mandatory.
    }
    
    // MonitorReaderOptions provides configurable options for monitor reader implementation.
    type MonitorReaderOptions struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. samples/addons/extras/prometheus-operator.yaml

    apiVersion: monitoring.coreos.com/v1
    kind: PodMonitor
    metadata:
      name: envoy-stats-monitor
      namespace: istio-system
      labels:
        monitoring: istio-proxies
        release: istio
    spec:
      selector:
        matchExpressions:
        - {key: istio-prometheus-ignore, operator: DoesNotExist}
      namespaceSelector:
        any: true
      jobLabel: envoy-stats
      podMetricsEndpoints:
      - path: /stats/prometheus
        interval: 15s
        relabelings:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 06:41:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. cluster/images/etcd-version-monitor/Dockerfile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    FROM gcr.io/distroless/static:latest
    
    COPY etcd-version-monitor /etcd-version-monitor
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 01:06:37 UTC 2019
    - 687 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

    import org.lastaflute.di.core.external.GenericExternalContextComponentDefRegister;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    import org.opensearch.monitor.jvm.JvmInfo;
    import org.opensearch.monitor.os.OsProbe;
    import org.opensearch.monitor.process.ProcessProbe;
    
    public class ThumbnailGenerator {
    
        private static final Logger logger = LogManager.getLogger(ThumbnailGenerator.class);
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/monitor/event/EventDispatcher.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.monitor.event;
    
    /**
     */
    @Deprecated
    public interface EventDispatcher {
    
        void addEventMonitor(EventMonitor monitor);
    
        void dispatchStart(String event, String target);
    
        void dispatchEnd(String event, String target);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt

        /* the implementation class to collect information from task execution result */
        klass: Class<T>,
        /* which tasks we need to monitor? For example, cache-miss-monitor monitors `AbstractCompile` tasks */
        taskFilter: (Task) -> Boolean,
        /* pass the collected information in build-logic and main build to build scan */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. docs/metrics/README.md

    `<Address for MinIO Node>/minio/v2/metrics/resource`.
    
    To use this endpoint, setup Prometheus to scrape data from this endpoint. Read more on how to configure and use Prometheus to monitor MinIO server in [How to monitor MinIO server with Prometheus](https://github.com/minio/minio/blob/master/docs/metrics/prometheus/README.md).
    
    ### **Deprecated metrics monitoring**
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cloudresource/cloud_request_manager.go

    		cloud:      cloud,
    		syncPeriod: syncPeriod,
    		nodeName:   nodeName,
    		// nodeAddressesMonitor is a monitor that guards a result (nodeAddresses,
    		// nodeAddressesErr) of the sync loop under the condition that a result has
    		// been saved at least once. The semantics here are:
    		//
    		// * Readers of the result will wait on the monitor until the first result
    		//   has been saved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top