Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for hashHead (0.43 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                    {
                        val schema = projectSchemaFor(pluginRequestsOf(scriptPlugins.first(), uniquePluginRequests)).get()
                        val hashed = HashedProjectSchema(schema)
                        scriptPlugins.map { hashed to it }
                    },
                    { (error, stdout, stderr) ->
                        reportProjectSchemaError(scriptPlugins, stdout, stderr, error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    	}
    
    	// Symbol definitions
    	h.Offsets[goobj.BlkSymdef] = w.Offset()
    	for _, s := range ctxt.defs {
    		w.Sym(s)
    	}
    
    	// Short hashed symbol definitions
    	h.Offsets[goobj.BlkHashed64def] = w.Offset()
    	for _, s := range ctxt.hashed64defs {
    		w.Sym(s)
    	}
    
    	// Hashed symbol definitions
    	h.Offsets[goobj.BlkHasheddef] = w.Offset()
    	for _, s := range ctxt.hasheddefs {
    		w.Sym(s)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    sealAVX2Tail128:
    	// Need to decrypt up to 128 bytes - prepare two blocks
    	// If we got here after the main loop - there are 512 encrypted bytes waiting to be hashed
    	// If we got here before the main loop - there are 448 encrpyred bytes waiting to be hashed
    	VMOVDQA ·chacha20Constants<>(SB), AA0
    	VMOVDQA state1StoreAVX2, BB0
    	VMOVDQA state2StoreAVX2, CC0
    	VMOVDQA ctr3StoreAVX2, DD0
    	VPADDD  ·avx2IncMask<>(SB), DD0, DD0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/util/ipvs_linux.go

    	}
    
    	// Test FlagHashed (0x2). A valid flag must include FlagHashed
    	if svc.Flags&FlagHashed == 0 {
    		return nil, fmt.Errorf("Flags of successfully created IPVS service should enable the flag (%x) since every service is hashed into the service table", FlagHashed)
    	}
    	// Sub Flags to 0x2
    	// 011 -> 001, 010 -> 000
    	vs.Flags = ServiceFlags(svc.Flags &^ uint32(FlagHashed))
    
    	if vs.Address == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/cmd/internal/objfile/goobj.go

    	r := f.r
    	if f.arch == nil {
    		return "", 0, nil
    	}
    	getSymData := func(s goobj.SymRef) []byte {
    		if s.PkgIdx != goobj.PkgIdxHashed {
    			// We don't need the data for non-hashed symbols, yet.
    			panic("not supported")
    		}
    		i := uint32(s.SymIdx + uint32(r.NSym()+r.NHashed64def()))
    		return r.BytesAt(r.DataOff(i), r.DataSize(i))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/crypto/tls/prf.go

    	out := make([]byte, finishedVerifyLength)
    	h.prf(out, masterSecret, serverFinishedLabel, h.Sum())
    	return out
    }
    
    // hashForClientCertificate returns the handshake messages so far, pre-hashed if
    // necessary, suitable for signing by a TLS client certificate.
    func (h finishedHash) hashForClientCertificate(sigType uint8, hashAlg crypto.Hash) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    // Holds the loader along with temporary states for loading symbols.
    type loadState struct {
    	l            *Loader
    	hashed64Syms map[uint64]symAndSize         // short hashed (content-addressable) symbols, keyed by content hash
    	hashedSyms   map[goobj.HashType]symAndSize // hashed (content-addressable) symbols, keyed by content hash
    
    	linknameVarRefs []linknameVarRef // linknamed var refererces
    }
    
    type linknameVarRef struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/sql-databases.md

        But as what the API client provides is the original password, you need to extract it and generate the hashed password in your application.
    
        And then pass the `hashed_password` argument with the value to save.
    
    !!! warning
        This example is not secure, the password is not hashed.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/crypto/md5/md5_test.go

    	}
    }
    
    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    // The test contains some already-generated states, and their expected sums
    // Tests a problem that is outlined in GitHub issue #29541
    // The problem is triggered when an amount of data has been hashed for which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  10. cmd/erasure-metadata-utils.go

    	diskCount := 0
    	for _, disk := range disks {
    		if disk == nil {
    			continue
    		}
    		diskCount++
    	}
    	return diskCount
    }
    
    // hashOrder - hashes input key to return consistent
    // hashed integer slice. Returned integer order is salted
    // with an input key. This results in consistent order.
    // NOTE: collisions are fine, we are not looking for uniqueness
    // in the slices returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top