Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for Monitoring (0.33 sec)

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

      public boolean isFair() {
        return fair;
      }
    
      /**
       * Returns whether this monitor is occupied by any thread. This method is designed for use in
       * monitoring of the system state, not for synchronization control.
       */
      public boolean isOccupied() {
        return lock.isLocked();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  2. security/pkg/server/ca/server_test.go

    		ca: &mockca.FakeCA{
    			SignedCert:    []byte("cert"),
    			KeyCertBundle: util.NewKeyCertBundleFromPem(nil, nil, []byte("cert_chain"), []byte("root_cert")),
    		},
    		Authenticators: []security.Authenticator{auth},
    		monitoring:     newMonitoringMetrics(),
    	}
    	mockCertChain := []string{"cert", "cert_chain", "root_cert"}
    	mockIPAddr := &net.IPAddr{IP: net.IPv4(192, 168, 1, 1)}
    	testCerts := map[string]struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/ztunnelserver.go

    	"golang.org/x/sys/unix"
    	"google.golang.org/protobuf/proto"
    	v1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/zdsapi"
    )
    
    var (
    	ztunnelKeepAliveCheckInterval = 5 * time.Second
    	readWriteDeadline             = 5 * time.Second
    )
    
    var ztunnelConnected = monitoring.NewGauge("ztunnel_connected",
    	"number of connections to ztunnel")
    
    type ZtunnelServer interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache.go

    	csrLatency := float64(time.Since(timeBeforeCSR).Nanoseconds()) / float64(time.Millisecond)
    	outgoingLatency.With(RequestType.Value(monitoring.CSR)).Record(csrLatency)
    	if err != nil {
    		numFailedOutgoingRequests.With(RequestType.Value(monitoring.CSR)).Increment()
    		cacheLog.Errorf("%s failed to sign: %v", logPrefix, err)
    		return nil, err
    	}
    
    	certChain := concatCerts(certChainPEM)
    
    	var expireTime time.Time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. cmd/erasure-sets.go

    			s.erasureDisksMu.Unlock()
    		}(endpoint)
    	}
    
    	wg.Wait()
    }
    
    // monitorAndConnectEndpoints this is a monitoring loop to keep track of disconnected
    // endpoints by reconnecting them and making sure to place them into right position in
    // the set topology, this monitoring happens at a given monitoring interval.
    func (s *erasureSets) monitorAndConnectEndpoints(ctx context.Context, monitorInterval time.Duration) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

    #include "tensorflow/core/lib/monitoring/counter.h"
    
    //===----------------------------------------------------------------------===//
    // The prepare-quantize Pass.
    //
    namespace mlir {
    namespace TFL {
    
    namespace {
    #define GEN_PASS_DEF_PREPAREQUANTIZEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    auto* tflite_quantizer_usage_stats = tensorflow::monitoring::Counter<1>::New(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/main/webapp/js/suggestor.js

    				$textArea.focus();
    				$textArea.val(strTmp);
    			} */
          }
        });
        $(this).blur(function() {
          if (!isMouseHover) {
            suggestor.fixList();
          }
        });
    
        //monitoring input field
        setInterval(function() {
          if (interval < 5) {
            interval = interval + 1;
          } else {
            if ($textArea.val() !== inputText) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/plugin/noderesources.go

    }
    
    // activePlugin holds the resource information about one plugin
    // and the gRPC stream that is used to retrieve that. The context
    // used by that stream can be canceled separately to stop
    // the monitoring.
    type activePlugin struct {
    	// cancel is the function which cancels the monitorPlugin goroutine
    	// for this plugin.
    	cancel func(reason error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/string_util.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/passes.h"
    #include "tensorflow/core/lib/monitoring/gauge.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    namespace {
    
    using mlir::Block;
    using mlir::BoolAttr;
    using mlir::Dialect;
    using mlir::LogicalResult;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

            then:
            result.status == GRACEFUL_EXPIRE
            result.reason == "after running out of JVM Metaspace"
        }
    
        def "can disable daemon performance monitoring"() {
            given:
            System.setProperty(HealthExpirationStrategy.ENABLE_PERFORMANCE_MONITORING, "false")
            def underTest = new HealthExpirationStrategy(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top