Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for rounds (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    type StreamTranslatorHandler struct {
    	// Location is the location of the upstream proxy. It is used as the location to Dial on the upstream server
    	// for upgrade requests.
    	Location *url.URL
    	// Transport provides an optional round tripper to use to proxy. If nil, the default proxy transport is used
    	Transport http.RoundTripper
    	// MaxBytesPerSec throttles stream Reader/Writer if necessary
    	MaxBytesPerSec int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_amd64.s

    	AESDEC X1, X0
    	MOVUPS 128(AX), X1
    	AESDEC X1, X0
    	MOVUPS 144(AX), X1
    	AESDECLAST X1, X0
    	MOVUPS X0, 0(DX)
    	RET
    
    // func expandKeyAsm(nr int, key *byte, enc, dec *uint32) {
    // Note that round keys are stored in uint128 format, not uint32
    TEXT ·expandKeyAsm(SB),NOSPLIT,$0
    	MOVQ nr+0(FP), CX
    	MOVQ key+8(FP), AX
    	MOVQ enc+16(FP), BX
    	MOVQ dec+24(FP), DX
    	MOVUPS (AX), X0
    	// enc
    	MOVUPS X0, (BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/crypto/sha512/sha512block_arm64.s

    	VREV64	V13.B16, V13.B16
    	VREV64	V14.B16, V14.B16
    	VREV64	V15.B16, V15.B16
    	VREV64	V16.B16, V16.B16
    	VREV64	V17.B16, V17.B16
    	VREV64	V18.B16, V18.B16
    	VREV64	V19.B16, V19.B16
    
    	MOVD	R3, R4
    	// load first 4 round consts in V20-V23
    	VLD1.P	64(R4), [V20.D2, V21.D2, V22.D2, V23.D2]
    
    	SHA512ROUND(V0, V1, V2, V3, V4, V20, V24, V12, V13, V19, V16, V17)
    	SHA512ROUND(V3, V0, V4, V2, V1, V21, V25, V13, V14, V12, V17, V18)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admission/v1/generated.proto

      // otherwise identical (parallel requests, requests when earlier requests did not modify etc)
      // The UID is meant to track the round trip (request/response) between the KAS and the WebHook, not the user request.
      // It is suitable for correlating log entries between the webhook and apiserver, for either auditing or debugging.
      optional string uid = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // otherwise identical (parallel requests, requests when earlier requests did not modify etc)
      // The UID is meant to track the round trip (request/response) between the KAS and the WebHook, not the user request.
      // It is suitable for correlating log entries between the webhook and apiserver, for either auditing or debugging.
      optional string uid = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    func (ut UnitType) sniffUnit(unit string) *Unit {
    	unit = strings.ToLower(unit)
    	if len(unit) > 2 {
    		unit = strings.TrimSuffix(unit, "s")
    	}
    	return ut.findByAlias(unit)
    }
    
    // autoScale takes in the value with units of the base unit and returns
    // that value scaled to a reasonable unit if a reasonable unit is
    // found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. docs/en/docs/fastapi-people.md

    * [Create Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
    * Review Pull Requests, [especially important for translations](contributing.md#translations){.internal-link target=_blank}.
    
    A round of applause to them. 👏 🙇
    
    ## FastAPI Experts
    
    These are the users that have been [helping others the most with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/runtime/mwbbuf.go

    	} else {
    		b.end = start + uintptr(len(b.buf))*unsafe.Sizeof(b.buf[0])
    	}
    
    	if (b.end-b.next)%unsafe.Sizeof(b.buf[0]) != 0 {
    		throw("bad write barrier buffer bounds")
    	}
    }
    
    // discard resets b's next pointer, but not its end pointer.
    //
    // This must be nosplit because it's called by wbBufFlush.
    //
    //go:nosplit
    func (b *wbBuf) discard() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/scan.go

    // other strings are expected to be JSON-marshaled parseError structs.
    // The two functions are meant to preserve the structure of an
    // error of type scanner.ErrorList in a round trip, but may not preserve the
    // structure of other errors.
    func parseErrorFromString(s string) error {
    	if s == "" {
    		return nil
    	}
    	var p parseError
    	if err := json.Unmarshal([]byte(s), &p); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/syscall/route_bsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    package syscall
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    var (
    	freebsdConfArch       string // "machine $arch" line in kern.conftxt on freebsd
    	minRoutingSockaddrLen = rsaAlignOf(0)
    )
    
    // Round the length of a raw sockaddr up to align it properly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top