Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for statusPort (0.18 sec)

  1. pkg/istio-agent/agent_test.go

    			}
    			return nil
    		}, retry.Timeout(time.Second*150))
    	}
    	t.Run("Envoy lifecycle", func(t *testing.T) {
    		Setup(t, func(a AgentTest) AgentTest {
    			a.envoyEnable = true
    			a.ProxyConfig.StatusPort = 15020
    			a.ProxyConfig.ProxyAdminPort = 15000
    			a.AgentConfig.EnvoyPrometheusPort = 15090
    			a.AgentConfig.EnvoyStatusPort = 15021
    			a.AgentConfig.ProxyXDSDebugViaAgent = false // uses a fixed port
    			return a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/cc/experimental/libtf/object.h

      template <class T>
      friend tensorflow::StatusOr<T> Cast(Handle handle);
      /// Infrastructure for converting a TaggedValue tuple function signature to an
      /// unpacked variable list.
      template <typename Fn, class TRET, class... ArgsOut>
      friend class UneraseCallHelper;
    };
    
    // Forward declare.
    template <class T>
    tensorflow::StatusOr<T> Cast(Handle handle);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top