Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 560 for ROUND (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

           - color 'red'
           - shape 'round'
         Found the following transforms:
           - From 'configuration ':roundBlueLiquidElements'':
               - With source attributes:
                   - color 'blue'
                   - shape 'round'
                   - state 'liquid'
               - Candidate transform(s):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/runtime/mem_linux.go

    			throw("runtime: cannot remap pages in address space")
    		}
    		return
    	}
    }
    
    func sysHugePageOS(v unsafe.Pointer, n uintptr) {
    	if physHugePageSize != 0 {
    		// Round v up to a huge page boundary.
    		beg := alignUp(uintptr(v), physHugePageSize)
    		// Round v+n down to a huge page boundary.
    		end := alignDown(uintptr(v)+n, physHugePageSize)
    
    		if beg < end {
    			madvise(unsafe.Pointer(beg), end-beg, _MADV_HUGEPAGE)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/crypto/md5/md5block.go

    		xb := byteorder.LeUint32(q[4*0xb:])
    		xc := byteorder.LeUint32(q[4*0xc:])
    		xd := byteorder.LeUint32(q[4*0xd:])
    		xe := byteorder.LeUint32(q[4*0xe:])
    		xf := byteorder.LeUint32(q[4*0xf:])
    
    		// round 1
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+x0+0xd76aa478, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+x1+0xe8c7b756, 12)
    		c = d + bits.RotateLeft32((((a^b)&d)^b)+c+x2+0x242070db, 17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/sha3/keccakf.go

    	// in the keccak reference code.
    	var t, bc0, bc1, bc2, bc3, bc4, d0, d1, d2, d3, d4 uint64
    
    	for i := 0; i < 24; i += 4 {
    		// Combines the 5 steps in each round into 2 steps.
    		// Unrolls 4 rounds per loop and spreads some steps across rounds.
    
    		// Round 1
    		bc0 = a[0] ^ a[5] ^ a[10] ^ a[15] ^ a[20]
    		bc1 = a[1] ^ a[6] ^ a[11] ^ a[16] ^ a[21]
    		bc2 = a[2] ^ a[7] ^ a[12] ^ a[17] ^ a[22]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	if limit == 0 {
    		// first record in file
    		limit = m.hdrLen + hashOff + 4*numHash
    	}
    	n := round(uint32(16+len(name)), recordUnit)
    	start = round(limit, recordUnit) // should already be rounded but just in case
    	if start/pageSize != (start+n)/pageSize {
    		// bump start to next page
    		start = round(limit, pageSize)
    	}
    	return start, start + n
    }
    
    var memmap = mmap.Mmap
    var munmap = mmap.Munmap
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/latency_tracker.go

    }
    
    // clientV3KVLatencyTracker decorates a clientv3.KV instance and times
    // each call so we can track the latency an API request incurs in etcd
    // round trips (the time it takes to send data to etcd and get the
    // complete response back)
    //
    // If an API request involves N (N>=1) round trips to etcd, then we will sum
    // up the latenciy incurred in each roundtrip.
    
    // It uses the context associated with the request in flight, so there
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/many_attribute_op.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    
    // Confirm a wide array of attribute survives the round-trip
    func.func @main(tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32> {
    ^bb0(%arg0: tensor<1x6x6x16xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 824 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion_test.go

    import (
    	"testing"
    	"time"
    
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestMapToLabelSelectorRoundTrip(t *testing.T) {
    	// We should be able to round-trip a map-only selector through LabelSelector.
    	inputs := []map[string]string{
    		nil,
    		{},
    		{"one": "foo"},
    		{"one": "foo", "two": "bar"},
    	}
    	for _, in := range inputs {
    		ls := &v1.LabelSelector{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue12621.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issues 12576 and 12621: Negative untyped floating point constants
    // with small magnitude round to 0, not negative zero.
    
    package main
    
    import "math"
    
    var m = -1e-10000
    
    func main() {
    	if math.Signbit(m) {
    		panic(m)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 20:13:05 UTC 2018
    - 393 bytes
    - Viewed (0)
  10. src/syscall/sockcmsg_dragonfly.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    // Round the length of a raw sockaddr up to align it properly.
    func cmsgAlignOf(salen int) int {
    	salign := sizeofPtr
    	if sizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) {
    		// 64-bit Dragonfly before the September 2019 ABI changes still requires
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 20 19:33:07 UTC 2019
    - 547 bytes
    - Viewed (0)
Back to top