Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for list_value (0.28 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. 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)
  3. 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)
  4. tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.cc

    namespace tensorflow {
    namespace testing {
    namespace {
    
    constexpr absl::string_view kZeroArgInputSignatureTextProto = R"(
    tuple_value: {
        values: {
          tuple_value: {
          }
        }
        values: {
          dict_value: {
          }
        }
    }
    )";
    
    constexpr absl::string_view kSingleArgInputSignatureTextProto = R"(
    tuple_value: {
        values: {
        tuple_value: {
            values: {
            tensor_spec_value: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 08 07:00:37 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.cc

        return failure();
    
      return success();
    }
    
    // Pattern matches the following reduction function for ArgMax/ArgMin:
    // %0 = compare{GT}(%lhs_value, %rhs_value)
    // %1 = compare{NE}(%lhs_value, %lhs_value)
    // %2 = or(%0, %1)
    // %3 = select(%2, %lhs_value, %rhs_value)
    // %4 = compare{EQ}(%lhs_value, %rhs_value)
    // %5 = compare{LT}(%lhs_index, %rhs_index)
    // %6 = and(%4, %5)
    // %7 = or(%2, %6)
    // %8 = select(%7, %lhs_index, %rhs_index)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train.py

        return accuracy, loss_value
    
      iterator = iter(ds_train)
      accuracy = 0.0
      for step in range(flags.FLAGS.train_steps):
        accuracy, loss_value = distributed_train_step(next(iterator))
        if step % display_step == 0:
          tf.print('Step %d:' % step)
          tf.print('    Loss = %f' % loss_value)
          tf.print('    Batch accuracy = %f' % accuracy)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 20 03:05:18 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  8. pkg/collateral/metrics/otel_test.go

    	)
    
    	want = []monitoring.MetricDefinition{
    		{
    			Name:        "mixer_config_adapter_info_configs_total",
    			Type:        "LastValue",
    			Description: "The number of known adapters in the current config.",
    		},
    		{
    			Name:        "mixer_config_attributes_total",
    			Type:        "LastValue",
    			Description: "The number of known attributes in the current config.",
    		},
    		{
    			Name:        "mixer_config_handler_configs_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_loong64.go

    	tv_sec  int64
    	tv_usec int64
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = int64(x)
    }
    
    type itimerspec struct {
    	it_interval timespec
    	it_value    timespec
    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type sigeventFields struct {
    	value  uintptr
    	signo  int32
    	notify int32
    	// below here is a union; sigev_notify_thread_id is the only field we use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    // Modify sends a modify event.
    func (f *FakeWatcher) Modify(obj runtime.Object) {
    	f.result <- Event{Modified, obj}
    }
    
    // Delete sends a delete event.
    func (f *FakeWatcher) Delete(lastValue runtime.Object) {
    	f.result <- Event{Deleted, lastValue}
    }
    
    // Error sends an Error event.
    func (f *FakeWatcher) Error(errValue runtime.Object) {
    	f.result <- Event{Error, errValue}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
Back to top