Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for vals_map (0.25 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            vals_map[output_tensor_index] = stats_op->getResult(0);
          } else {
            vals_map[output_tensor_index] = pair.value();
          }
        }
      }
    
      // Construct return values
      llvm::SmallVector<Value, 4> return_operands;
      for (auto index : func_outputs) {
        if (!vals_map.at(index)) {
          auto& const_tensor = *subgraph.tensors[index];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

                    valueMap.put("user", fessCredential.getUserId());
                }
            });
            log(valueMap);
        }
    
        public void logout(final OptionalThing<FessUserBean> user) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.LOGOUT.name());
            valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-"));
            valueMap.put("permissions",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

                    valueMap.remove("time");
                    valueMap.remove("ip");
                    super.printByLtsv(valueMap);
                }
    
                @Override
                protected void printByEcs(final Map<String, String> valueMap) {
                    valueMap.put("time", "2022-01-01T00:00:00.000Z");
                    valueMap.remove("ip");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/MapSerializer.java

            int size = decoder.readInt();
            Map<U, V> valueMap = new LinkedHashMap<U, V>(size);
            for (int i = 0; i < size; i++) {
                U key = keySerializer.read(decoder);
                V value = valueSerializer.read(decoder);
                valueMap.put(key, value);
            }
            return valueMap;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue54722b.go

    	value V
    }
    
    type node[V comparable] struct {
    	index    *index[V]
    	children map[string]*node[V]
    }
    
    type index[V comparable] struct {
    	arrays []array[V]
    }
    
    type array[V comparable] struct {
    	valueMap map[int]V
    }
    
    var x value[int]
    var y value[*Column]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:23:27 UTC 2022
    - 523 bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    			for _, val := range vals {
    				valueMap, ok := tagMap[key]
    				if !ok {
    					valueMap = make(map[string]int64)
    					tagMap[key] = valueMap
    				}
    				valueMap[val] += o.SampleValue(s.Value)
    			}
    		}
    		for key, vals := range s.NumLabel {
    			unit := o.NumLabelUnits[key]
    			for _, nval := range vals {
    				val := formatTag(nval, unit)
    				valueMap, ok := tagMap[key]
    				if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    // when the switch expression is of interface type.
    type (
    	valueMap  map[any][]valueType // underlying Go value -> valueType
    	valueType struct {
    		pos token.Pos
    		typ Type
    	}
    )
    
    func (check *Checker) caseValues(x *operand, values []ast.Expr, seen valueMap) {
    L:
    	for _, e := range values {
    		var v operand
    		check.expr(nil, &v, e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/stmt.go

    // when the switch expression is of interface type.
    type (
    	valueMap  map[interface{}][]valueType // underlying Go value -> valueType
    	valueType struct {
    		pos syntax.Pos
    		typ Type
    	}
    )
    
    func (check *Checker) caseValues(x *operand, values []syntax.Expr, seen valueMap) {
    L:
    	for _, e := range values {
    		var v operand
    		check.expr(nil, &v, e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    func setNestedFieldNoCopy(obj map[string]interface{}, value interface{}, fields ...string) error {
    	m := obj
    
    	for i, field := range fields[:len(fields)-1] {
    		if val, ok := m[field]; ok {
    			if valMap, ok := val.(map[string]interface{}); ok {
    				m = valMap
    			} else {
    				return fmt.Errorf("value cannot be set because %v is not a map[string]interface{}", jsonPath(fields[:i+1]))
    			}
    		} else {
    			newVal := make(map[string]interface{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. common/config/.golangci.yml

          - stringXbytes
          - switchTrue
          - typeAssertChain
          - typeSwitchVar
          - typeUnparen
          - underef
          - unlambda
          - unnecessaryBlock
          - unslice
          - valSwap
          - weakCond
      depguard:
        rules:
          DenyGogoProtobuf:
            files:
              - $all
            deny:
              - pkg: github.com/gogo/protobuf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top