Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for sally (0.03 sec)

  1. staging/src/k8s.io/apimachinery/pkg/conversion/converter_test.go

    	}
    	if e, a := z.Baz, w.Baz; e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    
    	convertFn3 := func(in *A, out *C, s Scope) error {
    		return fmt.Errorf("C can't store an A, silly")
    	}
    	if err := c.RegisterUntypedConversionFunc(
    		(*A)(nil), (*C)(nil),
    		func(a, b interface{}, s Scope) error {
    			return convertFn3(a.(*A), b.(*C), s)
    		},
    	); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 06 06:28:24 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. hack/update-vendor-licenses.sh

      local find_maxdepth
      local find_names
      local -a local_files=()
    
      # Necessary to expand {}
      case ${type} in
          LICENSE) find_names=(-iname 'licen[sc]e*')
                   find_maxdepth=1
                   # Sadly inconsistent in the wild, but mostly license files
                   # containing copyrights, but no readme/notice files containing
                   # licenses (except to "see license file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_386.s

    	// SetLastError(0).
    	MOVL	$0, 0x34(FS)
    
    	MOVL	libcall_n(BX), CX
    
    	// Fast version, do not store args on the stack.
    	CMPL	CX, $0
    	JE	docall
    
    	// Copy args to the stack.
    	MOVL	CX, AX
    	SALL	$2, AX
    	SUBL	AX, SP			// room for args
    	MOVL	SP, DI
    	MOVL	libcall_args(BX), SI
    	CLD
    	REP; MOVSL
    
    docall:
    	// Call stdcall or cdecl function.
    	// DI SI BP BX are preserved, SP is not
    	CALL	libcall_fn(BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    	if lbRange.max <= fairProp && fairProp <= ubRange.min { // no bounds matter
    		for idx := range classes {
    			ans[idx] = relativeItems[idx].target * fairProp
    		}
    		return ans, fairProp, nil
    	}
    	// Sadly, some bounds matter.
    	// We find the solution by sorting the bounds and considering progressively
    	// higher values of fairProp, starting from lbRange.min.
    	rap := (&relativeAllocProblem{items: relativeItems}).initIndices()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  5. src/crypto/tls/prf.go

    type finishedHash struct {
    	client hash.Hash
    	server hash.Hash
    
    	// Prior to TLS 1.2, an additional MD5 hash is required.
    	clientMD5 hash.Hash
    	serverMD5 hash.Hash
    
    	// In TLS 1.2, a full buffer is sadly required.
    	buffer []byte
    
    	version uint16
    	prf     func(result, secret, label, seed []byte)
    }
    
    func (h *finishedHash) Write(msg []byte) (n int, err error) {
    	h.client.Write(msg)
    	h.server.Write(msg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top