Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ListValue (0.18 sec)

  1. pilot/pkg/xds/testdata/none_lds_http.json

                  "ConfigType": {
                    "Config": {
                      "fields": {
                        "access_log": {
                          "Kind": {
                            "ListValue": {
                              "values": [
                                {
                                  "Kind": {
                                    "StructValue": {
                                      "fields": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/none_lds_tcp.json

                  "ConfigType": {
                    "Config": {
                      "fields": {
                        "access_log": {
                          "Kind": {
                            "ListValue": {
                              "values": [
                                {
                                  "Kind": {
                                    "StructValue": {
                                      "fields": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/value.go

    type Field struct {
    	ID   int64
    	Name string
    	Ref  *DynValue
    }
    
    // NewListValue returns an empty ListValue instance.
    func NewListValue() *ListValue {
    	return &ListValue{
    		Entries: []*DynValue{},
    	}
    }
    
    // ListValue contains a list of dynamically typed entries.
    type ListValue struct {
    	Entries      []*DynValue
    	initValueSet sync.Once
    	valueSet     map[ref.Val]struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/node_matchers.cc

      AttrValue attr_value;
      AttrValue::ListValue* list = attr_value.mutable_list();
      for (int i : int_list_attr.second) {
        list->add_i(i);
      }
      return {int_list_attr.first, attr_value};
    }
    
    std::pair<string, AttrValue> impl::AttrLiteralHelper(
        const std::pair<string, absl::Span<const string>>& string_list_attr) {
      AttrValue attr_value;
      AttrValue::ListValue* list = attr_value.mutable_list();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    		return
    	}
    
    	im := getOrCreateIstioMetadata(cluster)
    
    	// Add services field into istio metadata
    	im.Fields["services"] = &structpb.Value{
    		Kind: &structpb.Value_ListValue{
    			ListValue: &structpb.ListValue{
    				Values: []*structpb.Value{},
    			},
    		},
    	}
    
    	svcMetaList := im.Fields["services"].GetListValue()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

            TF_RETURN_IF_ERROR(FlattenSignature(value, flattened_specs));
          }
          return Status();
        }
        case StructuredValue::kListValue: {
          const ListValue& list = signature.list_value();
          for (const StructuredValue& value : list.values()) {
            TF_RETURN_IF_ERROR(FlattenSignature(value, flattened_specs));
          }
          return Status();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/cc_op_gen_util.cc

                     << attr_value.value_case();
      }
      return "<Unknown AttrValue type>";  // Prevent missing return warning
    }
    
    bool IsEmptyList(const AttrValue::ListValue& list) {
      return list.s_size() == 0 && list.i_size() == 0 && list.f_size() == 0 &&
             list.b_size() == 0 && list.type_size() == 0 &&
             list.shape_size() == 0 && list.tensor_size() == 0;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top