Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for keyMap (0.13 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/term/terminal.go

    			return keyDown, b[1:]
    		case 16: // ^P
    			return keyUp, b[1:]
    		}
    	}
    
    	if b[0] != keyEscape {
    		if !utf8.FullRune(b) {
    			return utf8.RuneError, b
    		}
    		r, l := utf8.DecodeRune(b)
    		return r, b[l:]
    	}
    
    	if !pasteActive && len(b) >= 3 && b[0] == keyEscape && b[1] == '[' {
    		switch b[2] {
    		case 'A':
    			return keyUp, b[3:]
    		case 'B':
    			return keyDown, b[3:]
    		case 'C':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  4. src/main/webapp/js/suggestor.js

            } else {
              suggestor.selectlist("down");
            }
          } else if (e.keyCode === 13) {
            if (isFocusList) {
              suggestor.fixList();
            }
          }
        });
        $(this).keyup(function(e) {
          if (
            (e.keyCode >= 48 && e.keyCode <= 90) ||
            (e.keyCode >= 96 && e.keyCode <= 105) ||
            (e.keyCode >= 186 && e.keyCode <= 226) ||
            e.keyCode === 8 ||
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. test-site/public/javascripts/suggestor.js

                    }
                } else if(e.keyCode == 13) {
                    if(isFocusList) {
                        suggestor.fixList();
                    }
                }
            });
            $(this).keyup(  function(e){
                if( ((e.keyCode >= 48) && (e.keyCode <= 90))
                    || ((e.keyCode >= 96) && (e.keyCode <= 105))
                    || ((e.keyCode >= 186) && (e.keyCode <= 226))
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	CMPQ inl, $128
    	JBE  openSSE128 // About 16% faster
    
    	// For long buffers, prepare the poly key first
    	MOVOU ·chacha20Constants<>(SB), A0
    	MOVOU (1*16)(keyp), B0
    	MOVOU (2*16)(keyp), C0
    	MOVOU (3*16)(keyp), D0
    	MOVO  D0, T1
    
    	// Store state on stack for future use
    	MOVO B0, state1Store
    	MOVO C0, state2Store
    	MOVO D0, ctr3Store
    	MOVQ $10, itr2
    
    openSSEPreparePolyKey:
    	chachaQR(A0, B0, C0, D0, T0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    peof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}})},a._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=t.makeArray(t(E)),s=0;s<n.length;s++){var r=a._getParentFromElement(n[s]),o=t(n[s]).data(i),l={relatedTarget:n[s]};if(o){var h=o._menu;if(t(r).hasClass(f)&&!(e&&("click"===e.type&&/input|textarea/i.test(e.target.tagName)||"keyup"===e.type&&9===e.which)&&t.contains(r,e.target))){var u=t.Event(c.HIDE,l);t(r).trigger(u),u.isDefaultPrevented()||("ontouchstart"in...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
Back to top