Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for api_type (0.13 sec)

  1. pkg/bootstrap/option/convert_test.go

    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tools/packaging/common/gcp_envoy_bootstrap.json

        "lds_config": {
          "resource_api_version": "V3",
          "ads": {}
        },
        "cds_config": {
          "resource_api_version": "V3",
          "ads": {}
        },
        "ads_config": {
          "api_type": "GRPC",
          "transport_api_version": "V3",
          "grpc_services": [
            {
              "google_grpc": {
                "target_uri": "{{ .discovery_address }}",
                "stat_prefix": "googlegrpcxds",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/model/authentication.go

    var (
    	defaultSDSConfig = &tls.SdsSecretConfig{
    		Name: SDSDefaultResourceName,
    		SdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    				ApiConfigSource: &core.ApiConfigSource{
    					ApiType:                   core.ApiConfigSource_GRPC,
    					SetNodeOnFirstMessageOnly: true,
    					TransportApiVersion:       core.ApiVersion_V3,
    					GrpcServices: []*core.GrpcService{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. bin/update_crds.sh

    fi
    
    git clone  "https://${REPO}" "${API_TMP}" && cd "${API_TMP}"
    git checkout "${SHA}"
    if [ ! -f "${API_TMP}/kubernetes/customresourcedefinitions.gen.yaml" ]; then
      echo "Generated Custom Resource Definitions file does not exist in the commit SHA ${SHA}. Not updating the CRD file."
      exit
    fi
    rm -f "${ROOTDIR}/manifests/charts/base/crds/crd-all.gen.yaml"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.cc

    #include "tensorflow/c/experimental/ops/gen/model/arg_type.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    ArgTypeView::ArgTypeView(ArgType arg_type) : arg_type_(arg_type) {}
    
    string ArgTypeView::TypeName() const {
      if (arg_type_.is_read_only()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/modify_io_nodes.cc

          if (current_type == input_type) {  // int8 == int8
            arg_type = quantize_output.getType();
            new_arg = block.addArgument(arg_type, loc);
            quantize_output.replaceAllUsesWith(new_arg);
          } else if (input_type.isUnsignedInteger(
                         current_type.getIntOrFloatBitWidth())) {  // int8 != uint8
            arg_type = quant::ConvertSignedQuantizedToUnsigned(
                quantize_output.getType(), loc);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

    import org.lastaflute.job.LaJobScheduler;
    
    public class AllJobScheduler implements LaJobScheduler {
    
        private static final Logger logger = LogManager.getLogger(AllJobScheduler.class);
    
        protected static final String APP_TYPE = "JOB";
    
        @Resource
        private TimeManager timeManager;
    
        @Resource
        private FessConfig fessConfig;
    
        @Resource
        private AccessContextLogic accessContextLogic;
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/passes/rewrite_quantized_io.cc

        for (BlockArgument arg : block.getArguments()) {
          Type arg_type = arg.getType();
          if (auto quant_type = arg_type.cast<TensorType>()
                                    .getElementType()
                                    .dyn_cast<quant::QuantizedType>()) {
            if (arg.hasOneUse() && llvm::isa<TFR::CastOp>(*arg.user_begin())) {
              arg.setType(
                  arg_type.cast<TensorType>().clone(quant_type.getStorageType()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        private static final Logger logger = LogManager.getLogger(FessBaseAction.class);
    
        /** The application type for FESs, e.g. used by access context. */
        protected static final String APP_TYPE = "FES"; // #change_it_first
    
        /** The user type for Admin, e.g. used by access context. */
        protected static final String USER_TYPE = "A";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. pkg/kube/kclient/interfaces.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package kclient
    
    import (
    	klabels "k8s.io/apimachinery/pkg/labels"
    	apitypes "k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/kube/controllers"
    )
    
    type Untyped = Informer[controllers.Object]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top