Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for statusPort (0.24 sec)

  1. manifests/charts/istio-control/istio-discovery/values.yaml

              cpu: 100m
              memory: 128Mi
            limits:
              cpu: 2000m
              memory: 1024Mi
    
          # Default port for Pilot agent health checks. A value of 0 will disable health checking.
          statusPort: 15020
    
          # Specify which tracer to use. One of: zipkin, lightstep, datadog, stackdriver, none.
          # If using stackdriver tracer outside GCP, set env GOOGLE_APPLICATION_CREDENTIALS to the GCP credential file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

              cpu: 100m
              memory: 128Mi
            limits:
              cpu: 2000m
              memory: 1024Mi
          # Default port for Pilot agent health checks. A value of 0 will disable health checking.
          statusPort: 15020
          # Specify which tracer to use. One of: zipkin, lightstep, datadog, stackdriver, none.
          # If using stackdriver tracer outside GCP, set env GOOGLE_APPLICATION_CREDENTIALS to the GCP credential file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. pkg/config/validation/agent/validation.go

    	if err := ValidateControlPlaneAuthPolicy(config.ControlPlaneAuthPolicy); err != nil {
    		errs = multierror.Append(errs, multierror.Prefix(err, "invalid authentication policy:"))
    	}
    
    	if err := ValidatePort(int(config.StatusPort)); err != nil {
    		errs = multierror.Append(errs, multierror.Prefix(err, "invalid status port:"))
    	}
    
    	if pkpConf := config.GetPrivateKeyProvider(); pkpConf != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

      std::string topology_attr;
      std::vector<int64_t> device_assignment_attr;
    
      auto status_or = GetTPUCompilationAndExecutionDevices(
          devices, /*num_replicas=*/1, /*num_cores_per_replica=*/1, topology_attr,
          device_assignment_attr);
      ASSERT_FALSE(status_or.ok());
      EXPECT_EQ(status_or.status().message(), std::get<1>(GetParam()));
    }
    
    INSTANTIATE_TEST_SUITE_P(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_device_context.cc

        VLOG(2) << "CopyCPUTensorToDevice empty tensor";
        done(absl::OkStatus());
        return;
      }
    
      absl::StatusOr<xla::PjRtClient*> pjrt_client =
          GetOrCreatePjRtClient(DeviceType(device->device_type()));
      if (!pjrt_client.ok()) {
        done(pjrt_client.status());
        return;
      }
      absl::StatusOr<std::unique_ptr<xla::PjRtBuffer>> buffer_or =
          HostTensorToPjRtBuffer(cpu_tensor, device, *pjrt_client,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:49:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

    }
    
    }  // namespace
    
    absl::StatusOr<ExportedModel> QuantizeQatModel(
        absl::string_view saved_model_path,
        const std::vector<std::string> &signature_keys,
        const std::unordered_set<std::string> &tags,
        const QuantizationOptions &quantization_options) {
      std::unique_ptr<mlir::MLIRContext> context =
          CreateMlirContextForQuantization();
    
      absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.h"
    
    #include <string>
    #include <vector>
    
    #include "absl/cleanup/cleanup.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/string_view.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_executable_persistor_test.cc

      MOCK_METHOD(absl::StatusOr<std::string>, SerializeExecutable,
                  (const xla::LocalExecutable& executable), (override));
      MOCK_METHOD(absl::StatusOr<std::string>, BuildSerializedExecutable,
                  (const XlaCompiler::Options& options,
                   const XlaCompiler::CompilationResult& result),
                  (override));
      MOCK_METHOD(absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/STLExtras.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/get_compiler_ir.cc

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/refcount.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    static absl::StatusOr<std::unique_ptr<xla::LocalExecutable>> BuildExecutable(
        xla::LocalClient* local_client,
        const XlaCompiler::CompilationResult& result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top