Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for 0_80 (0.03 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/OsXInstallationSupplierTest.groovy

            given:
            def supplier = new OsXInstallationSupplier(OperatingSystem.MAC_OS, osxJavaHomeCommand)
            def expectedJavaHome = new File("/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home")
            osxJavaHomeCommand.findJavaHomes() >> [expectedJavaHome]
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/serviceentry_simulation_test.go

    						Address:    "240.240.91.120",
    						Port:       80,
    						HostHeader: "istio.io",
    						Protocol:   simulation.HTTP,
    					},
    					Result: simulation.Result{
    						ListenerMatched: "0.0.0.0_80",
    						ClusterMatched:  "outbound|80||istio.io",
    					},
    				},
    				{
    					Name: "HTTPS call",
    					Call: simulation.Call{
    						Address:    "240.240.91.120",
    						Port:       443,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/syscall/asm_darwin_arm64.s

    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	SVC	$0x80
    	BCC	ok
    	MOVD	$-1, R1
    	MOVD	R1, r1+32(FP)	// r1
    	MOVD	ZR, r2+40(FP)	// r2
    	MOVD	R0, err+48(FP)	// err
    	RET
    ok:
    	MOVD	R0, r1+32(FP) // r1
    	MOVD	R1, r2+40(FP)	// r2
    	MOVD	ZR, err+48(FP)	// err
    	RET
    
    // func Syscall6(trap uintptr, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
    TEXT	·Syscall6(SB),NOSPLIT,$0-80
    	BL	runtime·entersyscall<ABIInternal>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 470)).length());
                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 480)).length());
                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 490)).length());
                assertEquals(128, crawlingInfoHelper.generateId(value.substring(0, 500)).length());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. gradle/libs.versions.toml

    animalsniffer-annotations = "org.codehaus.mojo:animal-sniffer-annotations:1.23"
    aqute-resolve = { module = "biz.aQute.bnd:biz.aQute.resolve", version.ref = "biz-aQute-bnd" }
    assertk = "com.willowtreeapps.assertk:assertk:0.28.0"
    bouncycastle-bcpkix = { module = "org.bouncycastle:bcpkix-jdk15to18", version.ref = "org-bouncycastle" }
    bouncycastle-bcprov = { module = "org.bouncycastle:bcprov-jdk15to18", version.ref = "org-bouncycastle" }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 06 05:06:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/runtime/sys_netbsd_386.s

    	MOVL	$SYS_exit, AX
    	INT	$0x80
    	MOVL	$0xf1, 0xf1		// crash
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT,$0-4
    	MOVL	wait+0(FP), AX
    	// We're done using the stack.
    	MOVL	$0, (AX)
    	MOVL	$SYS__lwp_exit, AX
    	INT	$0x80
    	MOVL	$0xf1, 0xf1		// crash
    	JMP	0(PC)
    
    TEXT runtime·open(SB),NOSPLIT,$-4
    	MOVL	$SYS_open, AX
    	INT	$0x80
    	JAE	2(PC)
    	MOVL	$-1, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/crypto/x509/oid.go

    	if len(der) == 0 || der[len(der)-1]&0x80 != 0 {
    		return OID{}, false
    	}
    
    	start := 0
    	for i, v := range der {
    		// ITU-T X.690, section 8.19.2:
    		// The subidentifier shall be encoded in the fewest possible octets,
    		// that is, the leading octet of the subidentifier shall not have the value 0x80.
    		if i == start && v == 0x80 {
    			return OID{}, false
    		}
    		if v&0x80 == 0 {
    			start = i + 1
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/syscall/asm_unix_386.s

    	CALL	runtime·entersyscall(SB)
    	MOVL	trap+0(FP), AX	// syscall entry
    	// slide args down on top of system call number
    	LEAL		a1+4(FP), SI
    	LEAL		trap+0(FP), DI
    	CLD
    	MOVSL
    	MOVSL
    	MOVSL
    	INT	$0x80
    	JAE	ok
    	MOVL	$-1, r1+16(FP)	// r1
    	MOVL	$-1, r2+20(FP)	// r2
    	MOVL	AX, err+24(FP)	// errno
    	CALL	runtime·exitsyscall(SB)
    	RET
    ok:
    	MOVL	AX, r1+16(FP)	// r1
    	MOVL	DX, r2+20(FP)	// r2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/internal/gcprog/gcprog.go

    func progbits(p []byte) int64 {
    	var n int64
    	for len(p) > 0 {
    		x := p[0]
    		p = p[1:]
    		if x == 0 {
    			break
    		}
    		if x&0x80 == 0 {
    			count := x &^ 0x80
    			n += int64(count)
    			p = p[(count+7)/8:]
    			continue
    		}
    		nbit := int64(x &^ 0x80)
    		if nbit == 0 {
    			nbit, p = readvarint(p)
    		}
    		var count int64
    		count, p = readvarint(p)
    		n += nbit * count
    	}
    	if len(p) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/encoding/binary/varint.go

    func AppendUvarint(buf []byte, x uint64) []byte {
    	for x >= 0x80 {
    		buf = append(buf, byte(x)|0x80)
    		x >>= 7
    	}
    	return append(buf, byte(x))
    }
    
    // PutUvarint encodes a uint64 into buf and returns the number of bytes written.
    // If the buffer is too small, PutUvarint will panic.
    func PutUvarint(buf []byte, x uint64) int {
    	i := 0
    	for x >= 0x80 {
    		buf[i] = byte(x) | 0x80
    		x >>= 7
    		i++
    	}
    	buf[i] = byte(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top