Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for partlen (0.31 sec)

  1. cluster/gce/windows/testonly/user-profile.psm1

        $sb = new-object System.Text.StringBuilder(260);
        $pathLen = $sb.Capacity;
     
        Write-Verbose "Creating user profile for $Username";
     
        try
        {
            [UserEnvCP]::CreateProfile($userSID.Value, $Username, $sb, $pathLen) | Out-Null;
        }
        catch
        {
            Write-Error $_.Exception.Message;
            break;
        }
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_amd64.s

    	MOVQ productTable+0(FP), pTbl
    	MOVQ data_base+8(FP), aut
    	MOVQ data_len+16(FP), autLen
    	MOVQ T+32(FP), tPtr
    
    	PXOR ACC0, ACC0
    	MOVOU bswapMask<>(SB), BSWAP
    	MOVOU gcmPoly<>(SB), POLY
    
    	TESTQ autLen, autLen
    	JEQ dataBail
    
    	CMPQ autLen, $13	// optimize the TLS case
    	JE dataTLS
    	CMPQ autLen, $128
    	JB startSinglesLoop
    	JMP dataOctaLoop
    
    dataTLS:
    	MOVOU (16*14)(pTbl), T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    	}
    	dv.Set(reflect.MakeSlice(dt, sv.Len(), sv.Cap()))
    
    	pathLen := len(ctx.parentPath)
    	defer func() {
    		ctx.parentPath = ctx.parentPath[:pathLen]
    	}()
    	for i := 0; i < sv.Len(); i++ {
    		ctx.pushIndex(i)
    		if err := fromUnstructured(sv.Index(i), dv.Index(i), ctx); err != nil {
    			return err
    		}
    		ctx.parentPath = ctx.parentPath[:pathLen]
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  4. pkg/serviceaccount/openidmetadata.go

    // https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata
    type openIDMetadata struct {
    	Issuer string `json:"issuer"` // REQUIRED in OIDC; meaningful to relying parties.
    	// TODO(mtaufen): Since our goal is compatibility for relying parties that
    	// need to validate ID tokens, but do not need to initiate login flows,
    	// and since we aren't sure what to put in authorization_endpoint yet,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  5. src/cmd/internal/sys/args.go

    //
    // Windows has a limit of 32 KB. To be conservative and not worry about whether
    // that includes spaces or not, just use 30 KB. Darwin's limit is less clear.
    // The OS claims 256KB, but we've seen failures with arglen as small as 50KB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 550 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/zcse.go

    // remove duplicate expressions.
    func zcse(f *Func) {
    	vals := make(map[vkey]*Value)
    
    	for _, b := range f.Blocks {
    		for i := 0; i < len(b.Values); i++ {
    			v := b.Values[i]
    			if opcodeTable[v.Op].argLen == 0 {
    				key := vkey{v.Op, keyFor(v), v.Aux, v.Type}
    				if vals[key] == nil {
    					vals[key] = v
    					if b != f.Entry {
    						// Move v to the entry block so it will dominate every block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  7. src/reflect/makefunc.go

    	// makeFuncImpl contains a stack map for use by the runtime
    	_, _, abid := funcLayout(ftyp, nil)
    
    	impl := &makeFuncImpl{
    		makeFuncCtxt: makeFuncCtxt{
    			fn:      code,
    			stack:   abid.stackPtrs,
    			argLen:  abid.stackCallArgsSize,
    			regPtrs: abid.inRegPtrs,
    		},
    		ftyp: ftyp,
    		fn:   fn,
    	}
    
    	return Value{t, unsafe.Pointer(impl), flag(Func)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. internal/crypto/key.go

    // DerivePartKey derives an unique 256 bit key from an ObjectKey and the part index.
    func (key ObjectKey) DerivePartKey(id uint32) (partKey [32]byte) {
    	var bin [4]byte
    	binary.LittleEndian.PutUint32(bin[:], id)
    
    	mac := hmac.New(sha256.New, key[:])
    	mac.Write(bin[:])
    	mac.Sum(partKey[:0])
    	return partKey
    }
    
    // SealETag seals the etag using the object key.
    // It does not encrypt empty ETags because such ETags indicate
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:28:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/notboring.go

    }
    func SignRSAPSS(priv *PrivateKeyRSA, h crypto.Hash, hashed []byte, saltLen int) ([]byte, error) {
    	panic("boringcrypto: not available")
    }
    func VerifyRSAPKCS1v15(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte) error {
    	panic("boringcrypto: not available")
    }
    func VerifyRSAPSS(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte, saltLen int) error {
    	panic("boringcrypto: not available")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/interfaces.go

    limitations under the License.
    */
    
    package dynamiccertificates
    
    import (
    	"crypto/x509"
    )
    
    // Listener is an interface to use to notify interested parties of a change.
    type Listener interface {
    	// Enqueue should be called when an input may have changed
    	Enqueue()
    }
    
    // Notifier is a way to add listeners
    type Notifier interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top