Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 131 for 8032 (0.04 sec)

  1. src/runtime/sys_linux_mipsx.s

    	MOVW	R5, 8(R29)
    	MOVW	R6, 12(R29)
    	MOVW	$runtime·sigtrampgo(SB), R1
    	JAL	(R1)
    	RET
    
    TEXT runtime·cgoSigtramp(SB),NOSPLIT,$0
    	JMP	runtime·sigtramp(SB)
    
    TEXT runtime·mmap(SB),NOSPLIT,$20-32
    	MOVW	addr+0(FP), R4
    	MOVW	n+4(FP), R5
    	MOVW	prot+8(FP), R6
    	MOVW	flags+12(FP), R7
    	MOVW	fd+16(FP), R8
    	MOVW	off+20(FP), R9
    	MOVW	R8, 16(R29)
    	MOVW	R9, 20(R29)
    
    	MOVW	$SYS_mmap, R2
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. cmd/sftp-server.go

    		case "trusted-user-ca-key":
    			userCaKeyFile = tokens[1]
    		case "password-auth":
    			disablePassAuth, _ = strconv.ParseBool(tokens[1])
    		}
    	}
    
    	if port == 0 {
    		port = 8022 // Default SFTP port, since no port was given.
    	}
    
    	if sshPrivateKey == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. test/inline_big.go

    	a[789] = 0
    	a[790] = 0
    	a[791] = 0
    	a[792] = 0
    	a[793] = 0
    	a[794] = 0
    	a[795] = 0
    	a[796] = 0
    	a[797] = 0
    	a[798] = 0
    	a[799] = 0
    	a[800] = 0
    	a[801] = 0
    	a[802] = 0
    	a[803] = 0
    	a[804] = 0
    	a[805] = 0
    	a[806] = 0
    	a[807] = 0
    	a[808] = 0
    	a[809] = 0
    	a[810] = 0
    	a[811] = 0
    	a[812] = 0
    	a[813] = 0
    	a[814] = 0
    	a[815] = 0
    	a[816] = 0
    	a[817] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    00000170  7c e6 d0 38 ab 28 0b 8c  78 51 aa 7f ef f0 9a c3  ||..8.(..xQ......|
    00000180  df 26 d2 bc 1b b6 98 b1  16 35 9d f0 73 b7 15 f7  |.&.......5..s...|
    00000190  7d 9f 3e fe 4c 75 e7 c7  5d cb c2 e5 29 4a 30 32  |}.>.Lu..]...)J02|
    000001a0  e2 da 3c 2c 16 ba 89 41  28 5c 33 75 b3 ed d1 e6  |..<,...A(\3u....|
    000001b0  4f f6 bb 33 62 53 9d be  fe d3 53 b5 bd 3e e3 b5  |O..3bS....S..>..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages_test.go

    		psk.obfuscatedTicketAge = uint32(rand.Intn(500000))
    		psk.label = randomBytes(rand.Intn(500)+1, rand)
    		m.pskIdentities = append(m.pskIdentities, psk)
    		m.pskBinders = append(m.pskBinders, randomBytes(rand.Intn(50)+32, rand))
    	}
    	if rand.Intn(10) > 5 {
    		m.quicTransportParameters = randomBytes(rand.Intn(500), rand)
    	}
    	if rand.Intn(10) > 5 {
    		m.earlyData = true
    	}
    
    	return reflect.ValueOf(m)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_ppc64x.s

    	VADDUWM		s1, xj, xj
    
    #ifdef GOARCH_ppc64le
    #define VPERMLE(va,vb,vc,vt) VPERM va, vb, vc, vt
    #else
    #define VPERMLE(va,vb,vc,vt)
    #endif
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB),0,$0-32
    	MOVD	dig+0(FP), CTX
    	MOVD	p_base+8(FP), INP
    	MOVD	p_len+16(FP), LEN
    
    	SRD	$6, LEN
    	SLD	$6, LEN
    	ADD	INP, LEN, END
    
    	CMP	INP, END
    	BEQ	end
    
    	MOVD	$·kcon(SB), TBL_STRT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    			}}
    		}
    		res = append(res, sm)
    	}
    	return res
    }
    
    func stringToPort(rules []string) []uint32 {
    	res := make([]uint32, 0, len(rules))
    	for _, m := range rules {
    		p, err := strconv.ParseUint(m, 10, 32)
    		if err != nil || p > 65535 {
    			continue
    		}
    		res = append(res, uint32(p))
    	}
    	return res
    }
    
    func stringToIP(rules []string) []*security.Address {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/internal/notsha256/sha256block_ppc64x.s

    	VADDUWM		s1, xj, xj
    
    #ifdef GOARCH_ppc64le
    #define VPERMLE(va,vb,vc,vt) VPERM va, vb, vc, vt
    #else
    #define VPERMLE(va,vb,vc,vt)
    #endif
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB),0,$0-32
    	MOVD	dig+0(FP), CTX
    	MOVD	p_base+8(FP), INP
    	MOVD	p_len+16(FP), LEN
    
    	SRD	$6, LEN
    	SLD	$6, LEN
    	ADD	INP, LEN, END
    
    	CMP	INP, END
    	BEQ	end
    
    	MOVD	$·kcon(SB), TBL_STRT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. src/crypto/sha512/sha512block_ppc64x.s

    	VADDUDM		h, d, d; \
    	VADDUDM		FUNC, S0, S0; \
    	VADDUDM		s0, xj, xj; \
    	LVX		(TBL)(idx), KI; \
    	VADDUDM		S0, h, h; \
    	VADDUDM		s1, xj, xj
    
    // func block(dig *digest, p []byte)
    TEXT ·block(SB),0,$0-32
    	MOVD	dig+0(FP), CTX
    	MOVD	p_base+8(FP), INP
    	MOVD	p_len+16(FP), LEN
    
    	SRD	$6, LEN
    	SLD	$6, LEN
    
    	ADD	INP, LEN, END
    
    	CMP	INP, END
    	BEQ	end
    
    	MOVD	$·kcon(SB), TBL_STRT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            assertThat(executionRequest.getLocalRepositoryPath().toString(), is("." + File.separatorChar + "custom2"));
        }
    
        /**
         * MNG-7032: Disable colours for {@code --version} if {@code --batch-mode} is also given.
         * @throws Exception cli invocation.
         */
        @Test
        void testVersionStringWithoutAnsi() throws Exception {
            // given
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top