Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for list_value (0.31 sec)

  1. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

                value {
                  list_value {
                  }
                }
              }
              values {
                key: "kwonlydefaults"
                value {
                  none_value {
                  }
                }
              }
              values {
                key: "annotations"
                value {
                  dict_value {
                  }
                }
              }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

              tuple_value {
                values {
                  tuple_value {
                  }
                }
                values {
                  dict_value {
                  }
                }
              }
            }
            output_signature {
              dict_value {
                fields {
                  key: "output_0"
                  value {
                    tensor_spec_value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tools/packaging/common/gcp_envoy_bootstrap.json

                  "args": {
                    "grpc.http2.max_pings_without_data": {
                      "int_value": 0
                    },
                    "grpc.keepalive_time_ms": {
                      "int_value": 10000
                    },
                    "grpc.keepalive_timeout_ms": {
                      "int_value": 20000
                    }
                  }
                }
              },
              "initial_metadata": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. tests/test_path.py

                        "loc": ["path", "item_id"],
                        "msg": "ensure this value has at least 3 characters",
                        "type": "value_error.any_str.min_length",
                        "ctx": {"limit_value": 3},
                    }
                ]
            }
        )
    
    
    def test_path_param_maxlength_foo():
        response = client.get("/path/param-maxlength/foo")
        assert response.status_code == 200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top