Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 256 for 65533 (4.34 sec)

  1. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_uint16{fn: or_65535_uint16, fnname: "or_65535_uint16", in: 0, want: 65535},
    	test_uint16{fn: or_uint16_65535, fnname: "or_uint16_65535", in: 0, want: 65535},
    	test_uint16{fn: or_65535_uint16, fnname: "or_65535_uint16", in: 1, want: 65535},
    	test_uint16{fn: or_uint16_65535, fnname: "or_uint16_65535", in: 1, want: 65535},
    	test_uint16{fn: or_65535_uint16, fnname: "or_65535_uint16", in: 65535, want: 65535},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
  2. src/hash/adler32/adler32.go

    //	are done modulo 65521. s1 is initialized to 1, s2 to zero.  The
    //	Adler-32 checksum is stored as s2*65536 + s1 in most-
    //	significant-byte first (network) order.
    package adler32
    
    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    const (
    	// mod is the largest prime that is less than 65536.
    	mod = 65521
    	// nmax is the largest n such that
    	// 255 * n * (n+1) / 2 + (n+1) * (mod-1) <= 2^32-1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/packaging/common/packaging.properties

    # Default values for min/max heap memory allocated to fess java process
    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    # Specifies the maximum file descriptor number
    packaging.os.max.open.files=65535
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    packaging.os.max.map.count=262144
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=tar.gz
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 797 bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/FileOperationsTest.java

                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        public void testCopyFile () throws IOException {
            int bufSize = 65536;
            long length = 4096 * 16;
            try ( SmbFile f = createTestFile() ) {
                try ( SmbFile d1 = createTestDirectory();
                      SmbFile t = new SmbFile(d1, makeRandomName()) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:17:59 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    	DMAPPEND = 0x40000000
    	DMEXCL   = 0x20000000
    	DMMOUNT  = 0x10000000
    	DMAUTH   = 0x08000000
    	DMTMP    = 0x04000000
    	DMREAD   = 0x4
    	DMWRITE  = 0x2
    	DMEXEC   = 0x1
    )
    
    const (
    	STATMAX    = 65535
    	ERRMAX     = 128
    	STATFIXLEN = 49
    )
    
    // Mount and bind flags
    const (
    	MREPL   = 0x0000
    	MBEFORE = 0x0001
    	MAFTER  = 0x0002
    	MORDER  = 0x0003
    	MCREATE = 0x0004
    	MCACHE  = 0x0010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  6. test/codegen/constants.go

    	out[0] = 0x0000010008000000
    	// ppc64x: "MOVD\t[$]-32767", "SLD\t[$]26,"
    	out[1] = 0xFFFFFE0004000000
    	// ppc64x: "MOVD\t[$]-1", "SLD\t[$]48,"
    	out[2] = 0xFFFF000000000000
    	// ppc64x: "MOVD\t[$]65535", "SLD\t[$]44,"
    	out[3] = 0x0FFFF00000000000
    }
    
    // A contiguous set of 1 bits, potentially wrapping.
    func contiguousMaskConstants(out [64]uint64) {
    	// ppc64x: "MOVD\t[$]-1", "RLDC\tR[0-9]+, [$]44, [$]63,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 14:03:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/crypto/rand/rand_js.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package rand
    
    import "syscall/js"
    
    // The maximum buffer size for crypto.getRandomValues is 65536 bytes.
    // https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues#exceptions
    const maxGetRandomRead = 64 << 10
    
    var batchedGetRandom func([]byte) error
    
    func init() {
    	Reader = &reader{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:03:38 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/fp_test.go

    	expectInt16(t, "32767", F32toI16_ssa(32767), 32767)
    	expectUint16(t, "32767", F64toU16_ssa(32767), 32767)
    	expectUint16(t, "32767", F32toU16_ssa(32767), 32767)
    	expectUint16(t, "65535", F64toU16_ssa(65535), 65535)
    	expectUint16(t, "65535", F32toU16_ssa(65535), 65535)
    }
    
    func fail64(s string, f func(a, b float64) float64, a, b, e float64) {
    	d := f(a, b)
    	if d != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  9. cmd/ftp-server.go

    			if err != nil {
    				logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s (%v)", arg, err), "unable to start FTP server")
    			}
    			if port < 1 || port > 65535 {
    				logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s, (port number must be between 1 to 65535)", arg), "unable to start FTP server")
    			}
    			publicIP = host
    		case "passive-port-range":
    			portRange = tokens[1]
    		case "tls-private-key":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/PortAllocator.groovy

     * limitations under the License.
     */
    
    package org.gradle.util.ports
    
    
    interface PortAllocator {
        public static final int MIN_PRIVATE_PORT = 49152
        public static final int MAX_PRIVATE_PORT = 65535
    
        /**
         * Assign and reserve a port
         * @return the port assigned
         */
        int assignPort()
    
        /**
         * Release a previously assigned port
         * @param port
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 10 12:13:40 UTC 2015
    - 996 bytes
    - Viewed (0)
Back to top