Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for keyMap (0.26 sec)

  1. internal/logger/reqinfo.go

    		}
    	}
    	if !updated {
    		// Append to the end of tags list
    		r.tags = append(r.tags, KeyVal{key, val})
    	}
    	return r
    }
    
    // GetTags - returns the user defined tags
    func (r *ReqInfo) GetTags() []KeyVal {
    	if r == nil {
    		return nil
    	}
    	r.RLock()
    	defer r.RUnlock()
    	return append(make([]KeyVal, 0, len(r.tags)), r.tags...)
    }
    
    // GetTagsMap - returns the user defined tags in a map structure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcs/vcs.go

    func (v *Cmd) runOutputVerboseOnly(dir string, cmd string, keyval ...string) ([]byte, error) {
    	return v.run1(dir, cmd, keyval, false)
    }
    
    // run1 is the generalized implementation of run and runOutput.
    func (v *Cmd) run1(dir string, cmdline string, keyval []string, verbose bool) ([]byte, error) {
    	m := make(map[string]string)
    	for i := 0; i < len(keyval); i += 2 {
    		m[keyval[i]] = keyval[i+1]
    	}
    	args := strings.Fields(cmdline)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  3. src/hash/maphash/smhasher_test.go

    func TestSmhasherSanity(t *testing.T) {
    	t.Parallel()
    	r := rand.New(rand.NewSource(1234))
    	const REP = 10
    	const KEYMAX = 128
    	const PAD = 16
    	const OFFMAX = 16
    	for k := 0; k < REP; k++ {
    		for n := 0; n < KEYMAX; n++ {
    			for i := 0; i < OFFMAX; i++ {
    				var b [KEYMAX + OFFMAX + 2*PAD]byte
    				var c [KEYMAX + OFFMAX + 2*PAD]byte
    				randBytes(r, b[:])
    				randBytes(r, c[:])
    				copy(c[PAD+i:PAD+i+n], b[PAD:PAD+n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      // and _XlaRecvAtHostOp and _XlaSendFromHostOp are used, update to a more
      // structured lowering.
      old_parallel_execute.walk(
          [&](TF::_XlaCompileMlirPlaceholderProgramKeyOp key_op) {
            key_op.replaceAllUsesWith(compile_op->getResult(1));
            key_op.erase();
          });
    
      // After rewrite, if there is a TPUCompilationResultOp from the same cluster,
      // replace it with the result of the compile op. The TPUCompilationResultOp is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/runtime/hash_test.go

    func TestSmhasherSanity(t *testing.T) {
    	r := rand.New(rand.NewSource(1234))
    	const REP = 10
    	const KEYMAX = 128
    	const PAD = 16
    	const OFFMAX = 16
    	for k := 0; k < REP; k++ {
    		for n := 0; n < KEYMAX; n++ {
    			for i := 0; i < OFFMAX; i++ {
    				var b [KEYMAX + OFFMAX + 2*PAD]byte
    				var c [KEYMAX + OFFMAX + 2*PAD]byte
    				randBytes(r, b[:])
    				randBytes(r, c[:])
    				copy(c[PAD+i:PAD+i+n], b[PAD:PAD+n])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. src/encoding/gob/encode.go

    func (enc *Encoder) encodeMap(b *encBuffer, mv reflect.Value, keyOp, elemOp encOp, keyIndir, elemIndir int) {
    	state := enc.newEncoderState(b)
    	state.fieldnum = -1
    	state.sendZero = true
    	state.encodeUint(uint64(mv.Len()))
    	mi := mv.MapRange()
    	for mi.Next() {
    		encodeReflectValue(state, mi.Key(), keyOp, keyIndir)
    		encodeReflectValue(state, mi.Value(), elemOp, elemIndir)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/crypto/aes/asm_ppc64x.s

    //
    // Rkeyp holds the key pointer. It is clobbered. Once
    // the expanded keys are loaded, it is not needed.
    //
    // R12,R14-R21 are scratch registers.
    // For keyp of 10, V6, V11-V20 hold the expanded key.
    // For keyp of 12, V6, V9-V20 hold the expanded key.
    // For keyp of 14, V6, V7-V20 hold the expanded key.
    #define LOAD_KEY(Rkeyp) \
    	MOVD	$16, R12 \
    	MOVD	$32, R14 \
    	MOVD	$48, R15 \
    	MOVD	$64, R16 \
    	MOVD	$80, R17 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    				check.assignment(x, utyp.key, "map literal")
    				if x.mode == invalid {
    					continue
    				}
    				if x.mode == constant_ {
    					duplicate := false
    					xkey := keyVal(x.val)
    					if keyIsInterface {
    						for _, vtyp := range visited[xkey] {
    							if Identical(vtyp, x.typ) {
    								duplicate = true
    								break
    							}
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. pkg/apis/storage/validation/validation_test.go

    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1"},
    			}, {
    				Name:         "driver2",
    				NodeID:       "nodeX",
    				TopologyKeys: []string{"keyA", "keyA"},
    			}},
    		},
    	}, {
    		// Empty NodeID
    		ObjectMeta: metav1.ObjectMeta{Name: "foo13"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         driverName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    				check.assignment(x, utyp.key, "map literal")
    				if x.mode == invalid {
    					continue
    				}
    				if x.mode == constant_ {
    					duplicate := false
    					xkey := keyVal(x.val)
    					if keyIsInterface {
    						for _, vtyp := range visited[xkey] {
    							if Identical(vtyp, x.typ) {
    								duplicate = true
    								break
    							}
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top