Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ListValue (0.12 sec)

  1. test/fixedbugs/issue57846.go

    package main
    
    func Float64D3(list [][][]float64, value float64) int {
    	valueCount := 0
    	for _, listValue := range list {
    		valueCount += Float64D2(listValue, value)
    	}
    	return valueCount
    }
    
    func Float64(list []float64, value float64) int {
    	valueCount := 0
    	for _, listValue := range list {
    		if listValue == value {
    			valueCount++
    		}
    	}
    	return valueCount
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 18:21:06 UTC 2023
    - 705 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/stringescape.mlir

    func.func @main() {
    ^bb0:
      // CHECK:      key: "listvalue"
      // CHECK-NEXT: value {
      // CHECK-NEXT:   list {
      // CHECK-NEXT:     s: " \n"
      // CHECK-NEXT:   }
      // CHECK:      key: "value"
      // CHECK-NEXT: value {
      // CHECK-NEXT:   s: " 0\n\000\000"
      tf_executor.graph {
        %0:2 = tf_executor.island wraps "tf.Placeholder"() {name = "dummy", dtype = "tfdtype$DT_INT32", value = "\200\n\00\00", listvalue = ["\20\0A"]} : () -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 556 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_waypoint.go

    	// Ensure VIP cluster has services metadata for stats filter usage
    	im := getOrCreateIstioMetadata(localCluster.cluster)
    	im.Fields["services"] = &structpb.Value{
    		Kind: &structpb.Value_ListValue{
    			ListValue: &structpb.ListValue{
    				Values: []*structpb.Value{},
    			},
    		},
    	}
    	svcMetaList := im.Fields["services"].GetListValue()
    	svcMetaList.Values = append(svcMetaList.Values, buildServiceMetadata(svc))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.h

    }
    
    string PrintTensor(const TensorProto& tensor_proto);
    
    string PrintTensorProto(const TensorProto& proto);
    
    string PrintAttrValue(StringPiece, const AttrValue& attr_value);
    
    bool IsEmptyList(const AttrValue::ListValue& list);
    
    string ToCamelCase(StringPiece str);
    
    string SeparateNamespaces(StringPiece str);
    
    // Returns a <string, bool> pair. The string is the C++ type name to be used for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top