Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 112 for Monitoring (1.65 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

    #include "xla/mlir_hlo/mhlo/utils/type_conversion.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    
    namespace mlir {
    namespace mhlo {
    namespace {
    
    #define GEN_PASS_DEF_LEGALIZETF
    #include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.h.inc"
    
    auto *mlir_legalization_count = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/v1/mlir_failed_xla_legalize_tf_count",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

    #include "tensorflow/core/framework/metrics.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/public/session_options.h"
    #include "tensorflow/core/util/debug_data_dumper.h"
    #include "tsl/platform/errors.h"
    
    namespace tensorflow {
    
    auto* mlir_function_pass_fallback_count = monitoring::Counter<1>::New(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. operator/pkg/object/objects_test.go

    							"--grpc-port=8060",
    							"--grpc-hostname=citadel",
    							"--citadel-storage-namespace=istio-system",
    							"--custom-dns-names=istio-pilot-service-account.istio-system:istio-pilot.istio-system",
    							"--monitoring-port=15014",
    							"--self-signed-ca=true"
    					  ]
    					}
    				]
    			}
    		}
    	}
    }`
    	testPodJSON := `{
    	"apiVersion": "v1",
    	"kind": "Pod",
    	"metadata": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

            files:
              - $all
              - "!**/pkg/monitoring/**"
              - "!**/pkg/tracing/**"
            deny:
              - pkg: go.opentelemetry.io/otel
                desc: "do not use OpenTelemetry directly; use pkg/monitoring"
              - pkg: go.opentelemetry.io/otel/metric
                desc: "do not use OpenTelemetry directly; use pkg/monitoring"
          DenyProtobufV1:
            files:
              - $all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/monitoring/monitortest"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/security/pkg/credentialfetcher/plugin"
    	"istio.io/istio/security/pkg/monitoring"
    )
    
    const (
    	mockServerAddress = "localhost:0"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pilot/pkg/autoregistration/controller.go

    	"istio.io/istio/pkg/kube/controllers"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/queue"
    )
    
    var (
    	autoRegistrationSuccess = monitoring.NewSum(
    		"auto_registration_success_total",
    		"Total number of successful auto registrations.",
    	)
    
    	autoRegistrationUpdates = monitoring.NewSum(
    		"auto_registration_updates_total",
    		"Total number of auto registration updates.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental.h

    // this context.
    TF_CAPI_EXPORT extern void TFE_ContextDisableGraphCollection(TFE_Context* ctx);
    
    // TODO(fishx): Move these monitoring APIs into a separate file.
    // -----------------------------------------------------------------------------
    // Monitoring Counter APIs.
    // These APIs de-templated monitoring Counter for swig.
    
    typedef struct TFE_MonitoringCounterCell TFE_MonitoringCounterCell;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/informers.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	eventTypeTag = monitoring.CreateLabel("type")
    	EventTotals  = monitoring.NewSum(
    		"nodeagent_reconcile_events_total",
    		"The total number of node agent reconcile events.",
    	)
    )
    
    type K8sHandlers interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    	httpServer  *http.Server // debug, monitoring and readiness Server.
    	httpAddr    string
    	httpsServer *http.Server // webhooks HTTPS Server.
    	httpsAddr   string
    
    	grpcServer        *grpc.Server
    	grpcAddress       string
    	secureGrpcServer  *grpc.Server
    	secureGrpcAddress string
    
    	// monitoringMux listens on monitoringAddr(:15014).
    	// Currently runs prometheus monitoring and debug (if enabled).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/utils/tf_type_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using quant::tensorflow::GetDenseAttrFromTensorProtoAttr;
    using quant::tensorflow::GetIntTypeFromTFQint;
    using quant::tensorflow::IsTFQintType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top