Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for Monitoring (0.17 sec)

  1. docs/en/data/external_links.yml

    https://www.evidentlyai.com/blog/fastapi-tutorial title: ML serving and monitoring with FastAPI and Evidently - author: Visual Studio Code Team author_link: https://code.visualstudio.com/ link: https://code.visualstudio.com/docs/python/tutorial-fastapi title: FastAPI Tutorial in Visual Studio Code - author: Apitally author_link: https://apitally.io link: https://blog.apitally.io/fastapi-application-monitoring-made-easy title: FastAPI application monitoring made easy - author: John Philip author_link: https://me...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.cc

    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/graph_debug_info.pb.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tensorflow/core/lib/monitoring/gauge.h"
    #include "tensorflow/core/lib/monitoring/sampler.h"
    #include "tensorflow/core/platform/casts.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mutex.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  3. android/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
    - 38.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    	if g != nil {
    		return g.AutoPassthroughSNIHosts
    	}
    	return sets.Set[string]{}
    }
    
    var (
    	typeTag = monitoring.CreateLabel("type")
    	nameTag = monitoring.CreateLabel("name")
    
    	totalRejectedConfigs = monitoring.NewSum(
    		"pilot_total_rejected_configs",
    		"Total number of configs that Pilot had to reject or ignore.",
    	)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. cni/pkg/cmd/root.go

    	"github.com/spf13/viper"
    
    	"istio.io/istio/cni/pkg/config"
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/cni/pkg/install"
    	udsLog "istio.io/istio/cni/pkg/log"
    	"istio.io/istio/cni/pkg/monitoring"
    	"istio.io/istio/cni/pkg/nodeagent"
    	"istio.io/istio/cni/pkg/repair"
    	"istio.io/istio/cni/pkg/scopes"
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/ctrlz"
    	"istio.io/istio/pkg/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. operator/pkg/compare/compare_test.go

        app: pilot
      name: istio-pilot
      namespace: istio-system
    spec:
      type: ClusterIP
      ports:
      - name: grpc-xds
        port: 15010
        protocol: TCP
        targetPort: 15010
      - name: http-monitoring
        port: 15014
        protocol: TCP
        targetPort: 15014
      selector:
        istio: pilot
    `
    
    	manifestDiffTests := []struct {
    		desc        string
    		yamlStringA string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                            iterator.remove();
                        }
                        // Else, leave the plan in the set of plans so that it can participate in health monitoring. It will be garbage collected once complete
                    } else if (state == WorkSource.State.MaybeWorkReadyToStart) {
                        return WorkSource.State.MaybeWorkReadyToStart;
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/jwks_resolver.go

    )
    
    var (
    	// Close channel
    	closeChan = make(chan bool)
    
    	networkFetchSuccessCounter = monitoring.NewSum(
    		"pilot_jwks_resolver_network_fetch_success_total",
    		"Total number of successfully network fetch by pilot jwks resolver",
    	)
    	networkFetchFailCounter = monitoring.NewSum(
    		"pilot_jwks_resolver_network_fetch_fail_total",
    		"Total number of failed network fetch by pilot jwks resolver",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    	DefaultNetworkGatewayPort = 15443
    )
    
    var log = istiolog.RegisterScope("kube", "kubernetes service registry controller")
    
    var (
    	typeTag  = monitoring.CreateLabel("type")
    	eventTag = monitoring.CreateLabel("event")
    
    	k8sEvents = monitoring.NewSum(
    		"pilot_k8s_reg_events",
    		"Events from k8s registry.",
    	)
    
    	// nolint: gocritic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/decompose.cc

    #include "tensorflow/compiler/mlir/tfr/passes/passes.h"
    #include "tensorflow/compiler/mlir/tfr/utils/utils.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    
    namespace tensorflow {
    namespace {
    
    auto* tf_core_op_expansion_op_counter =
        monitoring::Counter<1>::New("/tensorflow/core/op_expansion/op_counter",
                                    "The number of composite op expanded.", "name");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top