Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 210 for fInt64 (1.96 sec)

  1. cmd/test-utils_test.go

    func calculateSignedChunkLength(chunkDataSize int64) int64 {
    	return int64(len(fmt.Sprintf("%x", chunkDataSize))) +
    		17 + // ";chunk-signature="
    		64 + // e.g. "f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2"
    		2 + // CRLF
    		chunkDataSize +
    		2 // CRLF
    }
    
    func mustGetPutObjReader(t TestErrHandler, data io.Reader, size int64, md5hex, sha256hex string) *PutObjReader {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation.go

    		allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(*spec.Parallelism), fldPath.Child("parallelism"))...)
    	}
    	if spec.Completions != nil {
    		allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(*spec.Completions), fldPath.Child("completions"))...)
    	}
    	if spec.ActiveDeadlineSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		if ctr == 1 {
    			rem += 32
    		}
    
    		// clear the remainder starting at offset zero
    		offset := int64(0)
    
    		// first clear as many doublewords as possible
    		// then clear remaining sizes as available
    		for rem > 0 {
    			op, size := ppc64.AMOVB, int64(1)
    			switch {
    			case rem >= 8:
    				op, size = ppc64.AMOVD, 8
    			case rem >= 4:
    				op, size = ppc64.AMOVW, 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    func (t *Tester) testDeleteGracefulShorten(obj runtime.Object, createFn CreateFunc, getFn GetFunc, expectedGrace int64) {
    	ctx := t.TestContext()
    
    	foo := obj.DeepCopyObject()
    	t.setObjectMeta(foo, t.namer(6))
    	if err := createFn(ctx, foo); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	bigGrace := int64(time.Hour)
    	if expectedGrace > bigGrace {
    		bigGrace = 2 * expectedGrace
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    	zero := int64(0)
    	two := int64(2)
    	five := int64(5)
    	thirty := int64(30)
    	testCases := []struct {
    		desc                                 string
    		podSpecTerminationGracePeriodSeconds *int64
    		podDeletionGracePeriodSeconds        *int64
    		gracePeriodOverride                  *int64
    		expectedGracePeriod                  int64
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. src/net/http/request.go

    	// remaining, no need to read 32KB. 6 bytes will answer the
    	// question of the whether we hit the limit or go past it.
    	// 0 < len(p) < 2^63
    	if int64(len(p))-1 > l.n {
    		p = p[:l.n+1]
    	}
    	n, err = l.r.Read(p)
    
    	if int64(n) <= l.n {
    		l.n -= int64(n)
    		l.err = err
    		return n, err
    	}
    
    	n = int(l.n)
    	l.n = 0
    
    	// The server code and client code both use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    	case arg_slabel_imm14_2:
    		imm14 := ((x >> 5) & (1<<14 - 1))
    		return PCRel(((int64(imm14) << 2) << 48) >> 48)
    
    	case arg_slabel_imm19_2:
    		imm19 := ((x >> 5) & (1<<19 - 1))
    		return PCRel(((int64(imm19) << 2) << 43) >> 43)
    
    	case arg_slabel_imm26_2:
    		imm26 := (x & (1<<26 - 1))
    		return PCRel(((int64(imm26) << 2) << 36) >> 36)
    
    	case arg_slabel_immhi_immlo_0:
    		immhi := ((x >> 5) & (1<<19 - 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				HairpinMode:                               v1beta1.PromiscuousBridge,
    				MaxPods:                                   110,
    				PodPidsLimit:                              utilpointer.Int64(-1),
    				ResolverConfig:                            utilpointer.String(kubetypes.ResolvConfDefault),
    				CPUCFSQuota:                               utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    	aCache := uint64(0)
    	aCache |= uint64(bytes[0])
    	aCache |= uint64(bytes[1]) << (1 * 8)
    	aCache |= uint64(bytes[2]) << (2 * 8)
    	aCache |= uint64(bytes[3]) << (3 * 8)
    	aCache |= uint64(bytes[4]) << (4 * 8)
    	aCache |= uint64(bytes[5]) << (5 * 8)
    	aCache |= uint64(bytes[6]) << (6 * 8)
    	aCache |= uint64(bytes[7]) << (7 * 8)
    	s.allocCache = ^aCache
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    func _Cfunc_CBytes(b []byte) unsafe.Pointer {
    	p := _cgo_cmalloc(uint64(len(b)))
    	sliceHeader := struct {
    		p   unsafe.Pointer
    		len int
    		cap int
    	}{p, len(b), len(b)}
    	s := *(*[]byte)(unsafe.Pointer(&sliceHeader))
    	copy(s, b)
    	return p
    }
    `
    
    const cMallocDef = `
    func _Cfunc__CMalloc(n _Ctype_size_t) unsafe.Pointer {
    	return _cgo_cmalloc(uint64(n))
    }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top