Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ListValue (0.07 sec)

  1. 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)
  2. 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