Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 448 for key_value (0.16 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

      auto op_func_attr_array = op.getOpFuncAttrs().getValue();
      for (auto op_attr : op_func_attr_array) {
        auto key_value = mlir::dyn_cast<mlir::ArrayAttr>(op_attr);
        if (!key_value || key_value.getValue().size() != 2 ||
            !mlir::isa<mlir::StringAttr>(key_value.getValue()[0]) ||
            !mlir::isa<mlir::StringAttr>(key_value.getValue()[1]))
          return op.emitOpError() << "each op_func_attr should be a key-value "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

      assert(op_attrs);
      op_attrs->clear();
    
      mlir::Builder builder(context);
      for (auto iter : op_attr_array) {
        auto key_value = mlir::cast<mlir::ArrayAttr>(iter).getValue();
        llvm::StringRef key = mlir::cast<mlir::StringAttr>(key_value[0]).getValue();
        mlir::Attribute value = key_value[1];
        op_attrs->push_back({key, value});
      }
    }
    
    mlir::ParseResult ParseExecuteOpCommon(mlir::OpAsmParser &parser,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

      }
    
      const DictValue& kwargs_dict = kwargs.dict_value();
      NamedParamMap result;
      result.reserve(kwargs_dict.fields_size());
    
      for (const auto& key_value : kwargs_dict.fields()) {
        const std::string& key = key_value.first;
        const StructuredValue& value = key_value.second;
        if (!value.has_tensor_spec_value()) {
          return absl::FailedPreconditionError(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/common/key_value/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/common/matcher/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/common/mutation_rules/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. pkg/test/echo/response.go

    func (r Response) Body() []string {
    	type keyValue struct {
    		k, v string
    	}
    	var keyValues []keyValue
    	// rawBody is in random order, so get the order back via sorting.
    	for k, v := range r.rawBody {
    		keyValues = append(keyValues, keyValue{k, v})
    	}
    	sort.Slice(keyValues, func(i, j int) bool {
    		return keyValues[i].k < keyValues[j].k
    	})
    	var resp []string
    	for _, kv := range keyValues {
    		resp = append(resp, kv.v)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

              preferredDuringSchedulingIgnoredDuringExecution:
              - preference:
                  matchExpressions:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                  matchFields:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.ReplicaSet.yaml

              preferredDuringSchedulingIgnoredDuringExecution:
              - preference:
                  matchExpressions:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                  matchFields:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

                      },
                      "configMapKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      },
                      "secretKeyRef": {
                        "name": "nameValue",
                        "key": "keyValue",
                        "optional": true
                      }
                    }
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top