Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for highest (0.12 sec)

  1. src/net/tcpsockopt_unix.go

    	"time"
    )
    
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    
    	// The kernel expects seconds so round to next highest second.
    	secs := int(roundDurationUp(d, time.Second))
    	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("setsockopt", err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/net/tcpsockopt_solaris.go

    		return setKeepAliveIdleAndIntervalAndCount(fd, d, -1, -1)
    	}
    
    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    	// The kernel expects seconds so round to next highest second.
    	secs := int(roundDurationUp(d, time.Second))
    	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, sysTCP_KEEPIDLE, secs)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("setsockopt", err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
     * for their scope and its children.
     *
     * @see Scope
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

     * </ul>
     * </li>
     * <li>The equivalent parts of 2 versions are compared using the following rules:
     * <ul>
     *     <li>If both parts are numeric, the highest numeric value is <b>higher</b>: `1.1 {@literal <} 1.2`</li>
     *     <li>If one part is numeric, it is considered <b>higher</b> than the non-numeric part: `1.a {@literal <} 1.1`</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

                    new BootstrapMainStarter());
        }
    
        private static void addSystemProperties(Properties systemProperties, File gradleUserHome, File rootDir) {
            // The location with highest priority needs to come last here, as it overwrites any previous entries.
            systemProperties.putAll(SystemPropertiesHandler.getSystemProperties(new File(rootDir, "gradle.properties")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/math/rand/v2/pcg.go

    	// instead of the 128-bit value used here and in the official PCG code.
    	// This does not seem worthwhile, at least for Go: not having any high
    	// bits in the multiplier reduces the effect of low bits on the highest bits,
    	// and it only saves 1 multiply out of 3.
    	// (On 32-bit systems, it saves 1 out of 6, since Mul64 is doing 4.)
    	const (
    		mulHi = 2549297995355413924
    		mulLo = 4865540595714422341
    		incHi = 6364136223846793005
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/util.go

    	return prefix + "/" + name, nil
    }
    
    // HighWaterMark is a thread-safe object for tracking the maximum value seen
    // for some quantity.
    type HighWaterMark int64
    
    // Update returns true if and only if 'current' is the highest value ever seen.
    func (hwm *HighWaterMark) Update(current int64) bool {
    	for {
    		old := atomic.LoadInt64((*int64)(hwm))
    		if current <= old {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/crypto/sha1/sha1.go

    	d.Write(padlen)
    
    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    
    	byteorder.BePutUint32(digest[0:], d.h[0])
    	byteorder.BePutUint32(digest[4:], d.h[1])
    	byteorder.BePutUint32(digest[8:], d.h[2])
    	byteorder.BePutUint32(digest[12:], d.h[3])
    	byteorder.BePutUint32(digest[16:], d.h[4])
    
    	return digest
    }
    
    // ConstantTimeSum computes the same result of [Sum] but in constant time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/crypto/sha256/sha256.go

    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    
    	byteorder.BePutUint32(digest[0:], d.h[0])
    	byteorder.BePutUint32(digest[4:], d.h[1])
    	byteorder.BePutUint32(digest[8:], d.h[2])
    	byteorder.BePutUint32(digest[12:], d.h[3])
    	byteorder.BePutUint32(digest[16:], d.h[4])
    	byteorder.BePutUint32(digest[20:], d.h[5])
    	byteorder.BePutUint32(digest[24:], d.h[6])
    	if !d.is224 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/crypto/md5/md5.go

    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    	byteorder.LePutUint32(digest[0:], d.s[0])
    	byteorder.LePutUint32(digest[4:], d.s[1])
    	byteorder.LePutUint32(digest[8:], d.s[2])
    	byteorder.LePutUint32(digest[12:], d.s[3])
    	return digest
    }
    
    // Sum returns the MD5 checksum of the data.
    func Sum(data []byte) [Size]byte {
    	var d digest
    	d.Reset()
    	d.Write(data)
    	return d.checkSum()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top