Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Uncommon (0.14 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				metrics.RestartedPodTotal.FQName(): `# HELP kubelet_restarted_pods_total [ALPHA] Number of pods that have been restarted because they were deleted and recreated with the same UID while the kubelet was watching them (common for static pods, extremely uncommon for API pods)
    				# TYPE kubelet_restarted_pods_total counter
    				kubelet_restarted_pods_total{static=""} 1
    				kubelet_restarted_pods_total{static="true"} 0
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      local flags
      flags="$(construct-common-kubelet-flags)"
    
      # Note: NODE_KUBELET_TEST_ARGS is empty in typical kube-up runs.
      flags+=" ${NODE_KUBELET_TEST_ARGS:-}"
    
      local node_labels
      node_labels="$(build-windows-node-labels)"
      if [[ -n "${node_labels:-}" ]]; then
        flags+=" --node-labels=${node_labels}"
      fi
    
      # Concatenate common and windows-only node taints and apply them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. go.sum

    github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=
    github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
    github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
    github.com/prometheus/common v0.54.0 h1:ZlZy0BgJhTwVZUn7dLOkwCZHUkrAqd3WYtcFCWnM1D8=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	// We now look through the set of active pods for those that the pod worker is not aware of
    	// and deliver an update. The most common reason a pod is not known is because the pod was
    	// deleted and recreated with the same UID while the pod worker was driving its lifecycle (very
    	// very rare for API pods, common for static pods with fixed UIDs). Containers that may still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td"
    include "tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return nullptr;
      }
    
      ValuePort req = ComputeInputComponentFor(op, port);
      if (req.IsValid()) return values(req);
    
      return nullptr;
    }
    
    // Context used during ShapeInference. This class contains common information
    // that is required by the individual shape inference helper functions (e.g.,
    // TF Graph version, constant values computed, etc.)
    class ShapeInference {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		a = append(a, "-gno-record-gcc-switches")
    	}
    
    	// On OS X, some of the compilers behave as if -fno-common
    	// is always set, and the Mach-O linker in 6l/8l assumes this.
    	// See https://golang.org/issue/3253.
    	if cfg.Goos == "darwin" || cfg.Goos == "ios" {
    		a = append(a, "-fno-common")
    	}
    
    	return a
    }
    
    // gccNoPie returns the flag to use to request non-PIE. On systems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    	"github.com/minio/minio/internal/mcontext"
    	"github.com/minio/minio/internal/rest"
    	"github.com/prometheus/client_golang/prometheus"
    	dto "github.com/prometheus/client_model/go"
    	"github.com/prometheus/common/expfmt"
    	"github.com/prometheus/procfs"
    )
    
    //go:generate msgp -file=$GOFILE -unexported -io=false
    
    var (
    	nodeCollector           *minioNodeCollector
    	clusterCollector        *minioClusterCollector
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    				ci.StatusCode == http.StatusPreconditionFailed || ci.StatusCode == http.StatusNotModified)
    			if okSt {
    				ci.WriteHeaders(w, func() {
    					// set common headers
    					setCommonHeaders(w)
    				}, func() {
    					okSt := (ci.StatusCode == http.StatusOK || ci.StatusCode == http.StatusPartialContent)
    					if okSt && len(ci.Data) > 0 {
    						for k, v := range ci.Metadata {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    	errs = AppendValidation(errs, agent.ValidateLocalityLbSetting(settings.LocalityLbSetting, outlier))
    	return
    }
    
    // Copied from https://github.com/envoyproxy/envoy/blob/5451efd9b8f8a444431197050e45ba974ed4e9d8/source/common/common/utility.cc#L601-L615
    // to ensure we 100% match Envoy's implementation
    func isPrime(x uint64) bool {
    	if x != 0 && x < 4 {
    		return true // eliminates special-casing 2.
    	} else if (x & 1) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top