Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for Kashem (0.12 sec)

  1. src/cmd/go/internal/modload/init.go

    		fmt.Fprintf(os.Stderr, "go: to add module requirements and sums:\n\tgo mod tidy\n")
    	}
    }
    
    // fixVersion returns a modfile.VersionFixer implemented using the Query function.
    //
    // It resolves commit hashes and branch names to versions,
    // canonicalizes versions that appeared in early vgo drafts,
    // and does nothing for versions that already appear to be canonical.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	RET
    
    aes16:
    	MOVOU	(AX), X1
    	JMP	final1
    
    aes17to32:
    	// make second starting seed
    	PXOR	runtime·aeskeysched+16(SB), X1
    	AESENC	X1, X1
    
    	// load data to be hashed
    	MOVOU	(AX), X2
    	MOVOU	-16(AX)(CX*1), X3
    
    	// xor with seed
    	PXOR	X0, X2
    	PXOR	X1, X3
    
    	// scramble 3 times
    	AESENC	X2, X2
    	AESENC	X3, X3
    	AESENC	X2, X2
    	AESENC	X3, X3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			name: "collision",
    			inServices: []*model.Service{
    				{
    					Hostname:       "a17061.example.com",
    					Resolution:     model.DNSLB,
    					DefaultAddress: "0.0.0.0",
    				},
    				{
    					// hashes to the same value as the hostname above,
    					// a new collision needs to be found if the hash algorithm changes
    					Hostname:       "a44155.example.com",
    					Resolution:     model.DNSLB,
    					DefaultAddress: "0.0.0.0",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	// list of environment variables and files consulted
    	// the last time the test was run with those arguments.
    	// (To avoid unnecessary links, we store this entry
    	// under two hashes: id1 uses the linker inputs as a
    	// proxy for the test binary, and id2 uses the actual
    	// test binary. If the linker inputs are unchanged,
    	// this way we avoid the link step, even though we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	n = len(b)
    	for len(b) > 0 {
    		end := bytes.IndexByte(b, '\n')
    		if end == -1 {
    			end = len(b)
    		} else {
    			end++
    		}
    		// An indent of 4 spaces will neatly align the dashes with the status
    		// indicator of the parent.
    		line := b[:end]
    		if line[0] == marker {
    			w.c.output = append(w.c.output, marker)
    			line = line[1:]
    		}
    		const indent = "    "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	mt.TFlag = 0
    	mt.Hash = fnv1(etyp.Hash, 'm', byte(ktyp.Hash>>24), byte(ktyp.Hash>>16), byte(ktyp.Hash>>8), byte(ktyp.Hash))
    	mt.Key = ktyp
    	mt.Elem = etyp
    	mt.Bucket = bucketOf(ktyp, etyp)
    	mt.Hasher = func(p unsafe.Pointer, seed uintptr) uintptr {
    		return typehash(ktyp, p, seed)
    	}
    	mt.Flags = 0
    	if ktyp.Size_ > abi.MapMaxKeyBytes {
    		mt.KeySize = uint8(goarch.PtrSize)
    		mt.Flags |= 1 // indirect key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top