Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for valueMap (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/typeparam/issue50419.go

    )
    
    func main() {
    	foo := &Foo[string, int]{
    		valueA: "i am a string",
    		valueB: 123,
    	}
    	if got, want := fmt.Sprintln(foo), "i am a string 123\n"; got != want {
    		panic(fmt.Sprintf("got %s, want %s", got, want))
    	}
    }
    
    type Foo[T1 any, T2 any] struct {
    	valueA T1
    	valueB T2
    }
    
    func (f *Foo[_, _]) String() string {
    	return fmt.Sprintf("%v %v", f.valueA, f.valueB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 689 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/quantize_variables.cc

        auto assign_variable_op =
            dyn_cast_or_null<AssignVariableOp>(var_handle_user);
        if (!assign_variable_op) continue;
        auto value_op = assign_variable_op.getValue().getDefiningOp();
        auto dq_op = dyn_cast_or_null<DequantizeOp>(value_op);
        if (!dq_op || ref_qtype) continue;
        ref_qtype = dq_op.getInput().getType();
      }
      return ref_qtype;
    }
    
    class QuantizeVariablesPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. operator/pkg/helm/helm.go

    	options := chartutil.ReleaseOptions{
    		Name:      "istio",
    		Namespace: namespace,
    	}
    	valuesMap := map[string]any{}
    	if err := yaml.Unmarshal([]byte(values), &valuesMap); err != nil {
    		return "", fmt.Errorf("failed to unmarshal values: %v", err)
    	}
    
    	caps := *chartutil.DefaultCapabilities
    
    	// overwrite helm default capabilities
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top